Docs
Get Content
GET /content
GET
/contentRequired Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
Returns all content items for the event. Each item includes its associated activity, attached files, and scheduled surface blocks.
Response
Returns an array of content objects.
| Field | Type | Description |
|---|---|---|
| id | Guid | Content item ID. |
| name | string | Display name. |
| description | string | Description text. |
| activity | object| null | Associated activity (`{ id, name }`), or `null` if not activity-scoped. |
| files | File[] | Files attached to this content item. |
| files[].id | Guid | File ID. |
| files[].name | string | File name. |
| files[].status | string | File processing status. |
| schedule | ContentBlock[] | Surface blocks where this content is scheduled. |
| schedule[].surface | object | The surface (`{ id, name }`). |
| schedule[].startTime | DateTime | Block start time. |
| schedule[].endTime | DateTime | Block end time. |