Endpoints챌린지

챌린지 가져오기

이전에 생성된 챌린지를 반환합니다. 챌린지가 성공하거나 실패한 이후에는 `oneTimePassword`와 `url`이 포함되지 않습니다. 다시 표시해야 한다면 챌린지가 아직 열려 있는 동안 확보해 두십시오.

GET
/challenge/get
AuthorizationBearer <token>

In: header

Query Parameters

challengeId*string

챌린지의 ID

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}