EndpointsChallenges

Get challenge

Returns a previously created challenge. The `oneTimePassword` and `url` are omitted once the challenge has passed or failed, so capture them while the challenge is still open if you need to re-present it.

GET
/challenge/get
AuthorizationBearer <token>

In: header

Query Parameters

challengeId*string

The ID of the challenge

Match^[A-z0-9]{8}-[A-z0-9]{4}-[A-z0-9]{4}-[A-z0-9]{4}-[A-z0-9]{12}$
Formatuuid

Response Body

application/json

application/json

curl -X GET "https://example.com/challenge/get?challengeId=ae6d4729-af32-42ea-8ef2-ff46c7664802"
{  "challengeId": "ae6d4729-af32-42ea-8ef2-ff46c7664802",  "type": "CHALLENGE_PARENTAL_CONSENT",  "url": "https://example.com/challenge",  "oneTimePassword": "123ABC",  "childLiteAccessEnabled": true}