Submission (제출건)
Projection (프로젝션)
- POST/Projection
- GET/Projection
- DELETE/Projection
AML (자금세탁방지)
GET/Submission
GET/Submission/submission_id
이 API를 사용하여 특정 Submission ID의 상세 정보를 조회할 수 있습니다. KYC 신원 정보 데이터, KYC 결과, AML 결과, 거절 사유 및 코드, 재시도 사유 및 코드 등의 정보를 확인할 수 있습니다.
1. 엔드포인트
GET/Submission/submissionId
GET https://rest-api.argosidentity.com/v3/submission
2. 인증
x-api-key
헤더에 API 키를 포함시켜야 합니다:
x-api-key
x-api-key: {yourAPIKey}
3. 요청 파라미터
특정 제출 건의 고유 ID
4. 요청 예시
GET/Submission/submissionId
curl --location --request GET 'https://rest-api.argosidentity.com/v3/submission?submission_id={submission_id}' \
--header 'x-api-key: {yourAPIKey}'
5. 응답
5-1. 성공 응답
result.json
{
"Items": [
{
"data": {
"first_name": "Ji Sung",
"last_name": "Park",
"full_name": "Ji Sung Park",
"gender": "male",
"nationality": "KOR",
"date_of_birth": "YYYY-MM-DD",
"cf1": "{cf1}",
"ip_address": "XXX.XXX.XXX.XXX",
"idcard_issuingCountry": "KOR",
"idcard_issueDate": "YYYY-MM-DD",
"idType": "government_id"
},
"email": "{email}",
"submission_id": "{submission_id}",
"duplicated_information" : "{duplicated_information}",
"created_at": "YYYY-MM-DD-HH-MM-SS-ZZZ",
"userid": "{userid}",
"kyc": {
"result": "rejected",
"comment": [
"Multiple invalid KYC attempts "
],
"commentCode": [
"too_many_retry"
],
"attempts": [
{
"attemptCnt": 1,
"retryMsg": [
"Liveness fail: Face is too close to one or more borders. Please retry."
],
"retryCode": [
"liveness_error"
]
},
{
"attemptCnt": 2,
"retryMsg": [
"Liveness fail: Absolute face size is too small. Please retry."
],
"retryCode": [
"liveness_error"
]
},
{
"attemptCnt": 3,
"livenessScore": 99,
"retryMsg": [
"The face doesn't match. Please retry with another face image."
],
"retryCode": [
"face_compare_underscore"
]
}
]
},
"projection": {
"projectionId": "5y7f8asd9qm8u71",
"projectionName": "age_projection"
}
}
]
}
이 API를 통해 특정 Submission ID에 대한 상세 정보를 효율적으로 조회할 수 있습니다. 응답에는 사용자의 개인 정보, KYC 결과, 그리고 각 시도에 대한 상세 정보가 포함됩니다.
Was this page helpful?
On this page
Assistant
Responses are generated using AI and may contain mistakes.