이 API를 사용하여 특정 Submission ID의 상세 정보를 조회할 수 있습니다. KYC 신원 정보 데이터, KYC 결과, AML 결과, 거절 사유 및 코드, 재시도 사유 및 코드 등의 정보를 확인할 수 있습니다.
GET https://rest-api.argosidentity.com/v3/submission
x-api-key
헤더에 API 키를 포함시켜야 합니다:
x-api-key: {yourAPIKey}
curl --location --request GET 'https://rest-api.argosidentity.com/v3/submission?submission_id={submission_id}' \
--header 'x-api-key: {yourAPIKey}'
{
"Items": [
{
"data": {
"age_group": "N/A",
"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",
"updated_at": "YYYY-MM-DD-HH-MM-SS-ZZZ",
"kyc_result_at": "YYYY-MM-DD-HH-MM-SS-ZZZ",
"reviewer": "system",
"recognition_score": "{recognition_score}",
"argos_score": "{argos_score}",
"userid": "{userid}",
"project_options": {
"option_aml": true,
"option_addressData": false,
"policy_approvePeriod": 0,
"option_idNumber": true,
"policy_blacklistCountries": [],
"policy_acceptedID": [
"government_id",
"foreign_registrator",
"passport",
"drivers_license",
"vehicle_registration_certificate",
"aadhaar",
"residence_permit",
"pancard",
"visa",
"identification_card"
],
"option_mask_documentNumber": false,
"webhook": {
"createTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
"members": [
{
"name": "{memberName}",
"addDate": "YYYY-MM-DDTHH:MM:SS.SSSZ",
"email": "{memberEmail}"
}
],
"url": "{webhookUrl}"
},
"option_mask_idNumber": false,
"option_documentNumber": true,
"webhookURL": "{webhookURL}",
"policy_ageLimit": 18,
"option_ai_only": true
},
"ocr": {
"gender": "male",
"typeOfPermit": "F-4",
"issueDate": "YYYY-MM-DD",
"birthDate": "YYYY-MM-DD",
"fullName": "Ji Sung Park"
},
"kyc": {
"result": "rejected",
"comment": [
"Multiple invalid KYC attempts "
],
"commentCode": [
"too_many_retry"
],
"attempts": [
{
"attemptCnt": 1,
"step1Time1st": "YYYY-MM-DDTHH:MM:SS.SSSZ",
"ocrResult": "success"
}
],
"retry": [
{
"type": "step1",
"retryCnt": 1,
"retryCode": "recognition_fail",
"retryMessage": "recognition score under threshold"
},
{
"type": "step1",
"retryCnt": 2,
"retryCode": "recognition_fail",
"retryMessage": "recognition score under threshold"
},
{
"type": "step1",
"retryCnt": 3,
"retryCode": "recognition_fail",
"retryMessage": "recognition score under threshold"
}
]
},
"OCR_raw": {
"rotate": {
"value": "0"
},
"birth_date": {
"value": "DD.MM.YYYY"
},
"number": {
"value": "{identityNumber}",
"score": 99,
"accepted": true,
"coordinates": {
"third": {
"x": 954,
"y": 245
},
"fourth": {
"x": 591,
"y": 238
},
"first": {
"x": 591,
"y": 169
},
"second": {
"x": 955,
"y": 177
}
}
},
"name_eng": {
"value": "JI SUNG PARK",
"score": 79,
"accepted": true,
"coordinates": {
"third": {
"x": 814,
"y": 326
},
"fourth": {
"x": 581,
"y": 321
},
"first": {
"x": 582,
"y": 259
},
"second": {
"x": 815,
"y": 265
}
}
},
"gender": {
"value": "M",
"score": 100,
"accepted": true,
"coordinates": {
"third": {
"x": 1127,
"y": 249
},
"fourth": {
"x": 1095,
"y": 248
},
"first": {
"x": 1096,
"y": 180
},
"second": {
"x": 1128,
"y": 181
}
}
},
....
"issue_date": {
"value": "DD.MM.YYYY",
"score": 100,
"accepted": true,
"coordinates": {
"third": {
"x": 1121,
"y": 654
},
"fourth": {
"x": 909,
"y": 651
},
"first": {
"x": 910,
"y": 595
},
"second": {
"x": 1122,
"y": 599
}
}
}
},
"projection": {
"projectionId": "sdajkhfkjsdhfkadfh",
"projectionName": "projection"
}
}
]
}
이 페이지가 도움이 되었나요?