Endpoints연령 인증

연령 인증 요청 상태 조회

연령 인증 요청의 현재 상태를 반환합니다. 인증을 시작한 뒤 폴링하거나, 웹훅을 서버 측에서 확인하는 데 사용합니다. 요청은 `PENDING`에서 `IN_PROGRESS`로 진행되며 최종적으로 `PASS` 또는 `FAIL`로 확정됩니다. 확정된 요청에는 확인된 내용(추정 연령, 연령 카테고리, 사용된 방법)과, 실패한 경우 그 사유도 함께 담깁니다. `PASS`와 `FAIL` 외의 상태는 모두 진행 중으로 처리하십시오.

GET
/age-verification/get-status
AuthorizationBearer <token>

In: header

Query Parameters

id*string

The ID of the age verification request

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

If set to true, includes the verified date of birth (dob) field in the response when available

Defaultfalse

Response Body

application/json

curl -X GET "https://example.com/age-verification/get-status?id=ae6d4729-af32-42ea-8ef2-ff46c7664802"

{  "id": "ae6d4729-af32-42ea-8ef2-ff46c7664802",  "status": "PASS",  "age": {    "low": 18,    "high": 20  },  "ageCategory": "adult",  "method": "id-document"}