EndpointsChallenges

Get challenge statuses (bulk)

Returns the status of multiple challenges in a single request. Accepts up to 100 challenge IDs and returns an object keyed by challenge ID. Each value is either a challenge status or a `ClientErrorResponse` when the challenge could not be retrieved.

POST
/challenge/get-status
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/challenge/get-status" \  -H "Content-Type: application/json" \  -d '{    "challengeIds": [      "ae6d4729-af32-42ea-8ef2-ff46c7664802",      "f47ac10b-58cc-4372-a567-0e02b2c3d479"    ]  }'

{  "ae6d4729-af32-42ea-8ef2-ff46c7664802": {    "status": "PASS",    "sessionId": "b1a6482d-5242-4b4a-aa88-3fa52595a672",    "approverEmail": "user@example.com"  },  "f47ac10b-58cc-4372-a567-0e02b2c3d479": {    "status": "IN_PROGRESS"  }}