Step 2 Retry

  • Retry should be accompanied with 'submissionId'.

  • Submission IDs with Step2-completed log are not available for retry.

  • When the 'retryCount' goes up to 3, the submission ID will be rejected.(sums with Step 1 retry count)

Request URL

  • URL and x-api-key are required.

curl -X POST "https://rest-api.argoskyc.com/v3/submission/step2" \
-H "x-api-key: {yourAPIKey}" \
--form ...ava

*Refer to Retry/Error/Reject Codes page for retry and error code.

Sample Request

  • You can post one submission at a time

  • Posting in 'Body/form-data' format is recommended

curl --location --request POST 'https://rest-api.argoskyc.com/v3/submission/step2' \
--header 'x-api-key: {yourAPIKey}' \
--form 'faceImage=@"/C:/Users/face.jpg"' \
--form 'name="{name}"' \
--form 'nationality="USA"' \
--form 'date_of_birth="{YYYY-MM-DD}"' \
--form 'date_of_issue="{YYYY-MM-DD}"' \
--form 'date_of_expiry="{YYYY-MM-DD}"' \
--form 'submissionId="{submission_id}"' \
--form 'gender="male"' \
--form 'identity_number="{identity_number}"' \
--form 'document_number="{document_number}"' \
--form 'license_number="{license_number}"' \
--form 'serial_number="{serial_number}"'

Sample Response

  • Check for retry code and message when failed.

  • Retry using the same 'submissionId'.

  • At the moment when the 'retryCount' goes up to 3, the submission will be rejected.

{
    "retry": [
        {
            "retryCode": "face_compare_underscore",
            "retryMsg": "The face doesn’t match. Please retry with another face image."
        }
    ],
    "kycStatus": "incomplete",
    "retryCount": 1
}
{
    "verificationResult": "success",
    "faceSimilarityScore": 0,
    "livenessScore": 99,
    "kycStatus": "rejected",
    "retryCount": 3
}

Last updated