List module contents

GET/products/{product_id}/modules/{module_id}/content

Returns the direct contents of a module, meaning its submodules and the lessons placed directly in it, in display order. Items in the trash are not included.

All entries are returned in a single response while preserving the standard collection response format.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Path Parameters

product_id*string
module_id*string

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/products/string/modules/string/content"
{  "data": [    {      "id": "string",      "kind": "module",      "name": "string",      "object": "content_entry",      "position": 0,      "status": "published"    }  ],  "page": {    "limit": 1,    "next_cursor": "string",    "prev_cursor": "string"  }}