curl --request POST \
--url 'https://api.nsr.stateset.com/api/v1/flywheel/candidates/{id}/review' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"approve": true,
"reviewer": "string"
}'
{
"candidate_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"status": "pending"
}
Flywheel review candidate handler
Required scope: write
POST
/
api
/
v1
/
flywheel
/
candidates
/
{id}
/
review
curl --request POST \
--url 'https://api.nsr.stateset.com/api/v1/flywheel/candidates/{id}/review' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"approve": true,
"reviewer": "string"
}'
{
"candidate_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"status": "pending"
}
Required scope:
write
Path parameters
string
required
Promotion candidate ID
Request body
ReviewCandidateRequest
boolean
required
string
Response
ReviewCandidateResponse
string
required
string
required
Status codes
| Code | Meaning |
|---|---|
200 | Candidate reviewed |
400 | Invalid reviewer |
401 | Unauthorized — missing or invalid credentials |
403 | Forbidden — the key/token lacks the required scope |
404 | Candidate not found |
429 | Rate limited — see Retry-After / X-RateLimit-Reset |
curl --request POST \
--url 'https://api.nsr.stateset.com/api/v1/flywheel/candidates/{id}/review' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"approve": true,
"reviewer": "string"
}'
{
"candidate_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"status": "pending"
}
Last modified on August 31, 2026