v8

OpenAPI 3.1.02026-08-033623795.0 MB
Course chapters

Update course chapter

Update a chapter's title within a course.

Required permissions:

  • courses:update
patch/course_chapters/{id}

Path parameters

idstring required
Example:chap_xxxxxxxxxxxxx

The unique identifier of the chapter to update (e.g., "chap_XXXXX").

Request body

titlestring required

The new display title of the chapter (e.g., "Module 1: Introduction").

Response

A successful response

idstring required

The unique identifier for the chapter.

orderinteger required

The sort position of this chapter within its parent course, starting from zero.

titlestring required

The display name of the chapter shown to students. Maximum 150 characters.

Example response

{
  "id": "chap_xxxxxxxxxxxxx",
  "lessons": [
    {
      "id": "lesn_xxxxxxxxxxxxx",
      "order": 42,
      "title": "Understanding Candlestick Patterns"
    }
  ],
  "order": 42,
  "title": "Getting Started"
}