Docs

Review Advance Question

POST /advances/{advanceId}/questions/{advanceQuestionId}/review

POST/advances/{advanceId}/questions/{advanceQuestionId}/review

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour API key. Pass it as the Bearer token on every request.
Event tokenx-Event-TokenOptionalRun **Get Tokens** in the Authorization folder, or call `GET /Events/{eventId}/authorize` manually.

Marks the task linked to an advance question 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

FieldTypeRequiredDescription
advanceIdGuidRequiredThe ID of the advance containing the question.
advanceQuestionIdGuidRequiredThe ID of the advance question to mark as reviewed.

Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token.
NOT_FOUND404Advance question or its linked task could not be found.
BAD_REQUEST400No AdvanceTaskStatusMapping is configured for this event.