Docs
Get Activity Advances
GET /Activities/{activityId}/advances
GET
/Activities/{activityId}/advancesRequired 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 advances linked to the activity, including each advance's collaborator and area context, its answered questions, and its resource requests (with approval status and properties). Use this to surface what has been advanced for a given activity.
Requires EventBasicAccess on the event.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| activityId | Guid | Required | The ID of the activity. |
Response
Returns an array of advances. Each advance includes:
| Field | Type | Description |
|---|---|---|
| id | Guid | Advance ID. |
| name | string | Advance name. |
| collaborator | object | The collaborator the advance belongs to (id, name, contacts). |
| area | object | The area the advance belongs to (id, name). |
| questions | array | Answered advance questions (id, advanceModuleId, moduleTemplateBlockId, questionTemplateId, value). |
| requests | array | Resource requests on the advance, including `advanceApproved` / `resourceApproved` flags, the linked `resource`, and request properties. |