Docs
Get Activity
GET /Activities/{activityId}
GET
/Activities/{activityId}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 the full details for a single activity, including participants, areas, and any linked advances.
Requires EventAdmin permission on the event.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| activityId | Guid | Required | The ID of the activity to retrieve. |
Response
| Field | Type | Description |
|---|---|---|
| id | Guid | Unique identifier for the activity. |
| eventId | Guid | ID of the event this activity belongs to. |
| type | string | Activity type: `Activity` or `TimeFrame`. |
| name | string | Display name of the activity. |
| description | string | Optional description. |
| startDateTime | DateTime | Activity start time (UTC). |
| endDateTime | DateTime | Activity end time (UTC). |
| exactLocation | string | Optional specific location string. |
| isGlobal | bool | Whether this activity is visible to all event participants. |
| isAllDay | bool | Whether this is an all-day activity. |
| recurrenceRules | object| null | Recurrence configuration, or `null` for non-recurring activities. |
| areas | array | Areas associated with this activity (id, name). |
| users | array | User participants (id, name, isRequired, role). |
| collaborators | array | Collaborator participants (id, name, isRequired, role). |
| advances | array | Linked advances with questions, requests, and assets. |