List Categories
GET/courses/products/:productId/categories
List categories for a course. Requires a Location token with courses.readonly. Each item is the full category object.
Request
Version stringrequired
API Version
Available options
v3productId string<uuid>required
Product id
Possible values: non-empty
locationId stringrequired
Location id or sub-account id is required.
Possible values: non-empty
Success
- application/json
- Schema
- Example (auto)
Schema
categoriesobject[]required
{
"categories": [
{
"id": "b2c3d4e5-f678-4901-bcde-f12345678901",
"title": "Module 1",
"description": "First module",
"parentCategory": null,
"visibility": "published",
"posterImage": "https://cdn.example.com/module.png",
"sequenceNo": 1,
"dripDays": 0,
"metadata": {
"dripUnit": "days",
"dripDate": null
},
"commentPermission": "hidden",
"lockedBy": null,
"lockedByCategory": null,
"createdAt": "2026-04-20T10:00:00.000Z",
"updatedAt": "2026-04-20T10:00:00.000Z"
}
]
}