説明:アカデミー内のコースにチャプターを作成します
リクエストURL:/api/v4/<orgId>/sections.json(orgIdの取得方法)
メソッド:POST
OAuthスコープ:TrainerCentral.sectionapi.CREATE
パラメーター
- {
- 'section':{
- 'courseId': '<courseId>',
- 'name': '<section name>'
- }
- }
パラメーターの説明
1. courseId - チャプターを作成する対象のコースIDです。
2. name:チャプター名です。
サンプルレスポンス
- チャプター:
- {
- 'section':
- {
- 'sectionName':<SectionName>,
- 'sectionIndex':'0',
- 'lastUpdatedBy':<userId>,
- 'createdBy':<userId>,
- 'createdTime':'1646207388070',
- 'lastUpdatedTime':'1646207388070',
- 'id':<sectionId>,
- 'sectionId':<sectionId>,
- 'status':'0'
- }
- }
-