Docs
Get Allowed Schedules
GET /Activities/allowedSchedules
GET
/Activities/allowedSchedulesRequired 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 the crew members, collaborators, and areas that can be selected as schedule scopes. Each item includes an isAllowed flag indicating whether the caller has permission to add/share activities for that schedule.
This is useful for populating schedule-picker UIs or validating which schedule values are valid to pass to Get Activities.
Requires EventBasicAccess on the event.
Response
| Field | Type | Description |
|---|---|---|
| crewMembers | array | Crew members on the event and whether they are accessible. |
| collaborators | array | Collaborators on the event and whether they are accessible. |
| areas | array | Areas on the event and whether they are accessible. |
Each item in these arrays contains:
| Field | Type | Description |
|---|---|---|
| id | Guid | The ID of the crew member, collaborator, or area. Use this as the `schedule` value when calling **Get Activities**. |
| name | string | Display name. |
| isAllowed | bool | Whether the caller has permission to add/share activities for this schedule. |