Docs
Add Advance
POST /collaborators/{collaboratorId}/advances
POST
/collaborators/{collaboratorId}/advancesRequired Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
Creates a new advance form for a collaborator. Optionally seeds the advance from a template and/or scopes it to a specific area or activity.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| collaboratorId | Guid | Required | The ID of the collaborator. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| name | string | Required | Display name for the advance. |
| templateId | Guid? | Optional | ID of an advance template to seed modules from. Omit or `null` to create blank. |
| areaId | Guid? | Optional | Scope this advance to a specific area. Omit or `null` for event-wide. |
| activityId | Guid? | Optional | Scope this advance to a specific activity. Omit or `null` for event-wide. |
Response
Returns 201 Created with an empty body on success.