Headless LMS

Reorder activities in a module

POST /api/courses/{courseId}/modules/{moduleId}/activities/reorder. Reorder activities in a module. Headless LMS Content API reference.

POST
/api/courses/{courseId}/modules/{moduleId}/activities/reorder

Path Parameters

courseId*string
moduleId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/courses/string/modules/string/activities/reorder" \  -H "Content-Type: application/json" \  -d '{    "orderedIds": [      "string"    ]  }'
[  {    "orgId": "string",    "id": "string",    "courseId": "string",    "title": "string",    "seq": 0,    "createdAt": "2019-08-24T14:15:22Z",    "updatedAt": "2019-08-24T14:15:22Z"  }]