Docs
Review Advance Request
POST /advances/{advanceId}/requests/{advanceRequestId}/review
POST
/advances/{advanceId}/requests/{advanceRequestId}/reviewRequired 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. |
Marks the task linked to an advance request block as Done, and recalculates the parent module and advance task statuses based on the current state of all sibling tasks.
This endpoint is only meaningful when the advance module has task tracking enabled (isTaskTracked: true) and an AdvanceTaskStatusMapping has been configured for the event. If no mapping exists, the call will fail.
Event scoping: These endpoints do not include {eventId} in the URL. The event is determined automatically from your x-Event-Token — the API uses it to know which event's data to return. Ensure you have a valid event token before making any calls in this folder.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| advanceId | Guid | Required | The ID of the advance containing the request. |
| advanceRequestId | Guid | Required | The ID of the advance request to mark as reviewed. |
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
UNAUTHORIZED | 401 | Missing or invalid token. |
NOT_FOUND | 404 | Advance request or its linked task could not be found. |
BAD_REQUEST | 400 | No AdvanceTaskStatusMapping is configured for this event. |