This method is for a singular entity; if you are in search of a bulk entity method, please refer to this link.

1. Endpoint

GET/Submission/submissionId
GET https://rest-api.argosidentity.com/v3/submission

2. Authentication

Include the API key in the x-api-key header:
x-api-key
x-api-key: {yourAPIKey}

3. Request Parameters

The request should be in JSON format. Below is a description of the fields:
submission_id
string
required
Unique ID of a specific submission.

4. Request Example

GET/Submission/submissionId
curl --location --request GET 'https://rest-api.argosidentity.com/v3/submission?submission_id={submission_id}' \
--header 'x-api-key: {yourAPIKey}'

5. Response

5-1. Success Response

result.json
{
    "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"
            }
        }
    ]
}

5-2-a. Response Field (ID Document)

For details, refer to this link of GET/SUBMISSION (Bulk as list)

5-2-b. Response

For details, refer to this link of GET/SUBMISSION (Bulk as list) This API efficiently retrieves detailed information for a specific Submission ID. The response includes the applicant’s personal details, KYC results, and comprehensive information about each attempt.