get_subcontent
List nested content or asset items within a collection, with pagination and metadata. Specify workspace, content ID, and category to get each item's details.
Instructions
List the subcontent items nested inside a collection, page by page.
Returns the content items linked as subcontent inside the given collection's
category. Each item includes its id, name, cover, privacy, progression,
and the section it belongs to.
workspace_id: target workspace ID — get available IDs from list_workspaces()
content_id: ID of the collection (the parent content item)
category_name: "Content" (nested content items) or "Asset" (nested assets)
page_size: items per page (default 50)
cursor: opaque cursor from a previous response; omit for first page
order: "Asc" (default) or "Desc"
Returns {"items": [...], "cursor": "..." | null}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| order | No | Asc | |
| cursor | No | ||
| page_size | No | ||
| content_id | Yes | ||
| workspace_id | Yes | ||
| category_name | Yes |