Docs
Get Activities Run Of Show
GET /Activities/run-of-show?schedule={scheduleId}
GET
/Activities/run-of-show?schedule={scheduleId}Required Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
| Event token | x-Event-Token | Optional | Run **Get Tokens** in the Authorization folder, or call `GET /Events/{eventId}/authorize` manually. |
Returns a lightweight list of activities for a given schedule scope, suitable for building a run-of-show view. Only returns activities that have at least one segment.
Requires EventBasicAccess permission on the event.
Query Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| schedule | Guid | Required | The scope ID for the activities to retrieve. Accepts the event ID, a collaborator ID, or an area ID. |
Response
Returns an array of activity summaries. Each item includes:
| Field | Type | Description |
|---|---|---|
| id | Guid | Unique identifier for the activity. |
| type | string | Activity type: `Activity` or `TimeFrame`. |
| name | string | Display name of the activity. |
| startDateTime | DateTime | Activity start time (UTC). |
| endDateTime | DateTime | Activity end time (UTC). |
| isAllDay | bool | Whether this is an all-day activity. |