API Guide
You can submit your customer's KYC form data using the Argos API and check the progress of KYC.
The Argos API uses RESTful Endpoints and the default HTTP Method.
The response data contains the status of the request and possible error codes.
All response data is provided as JSON format.
Use token authentication.
All requests must be made in HTTPS. HTTP requests will fail.
1. Getting Started
To get started using API you need a valid API key. To obtain an API key, please contact Argos HELPDESK.
2. Authentication
The API uses Token-based authentication.
The API must be provided by Argos in order to use the API.
Authenticate with HTTP Headers
You can send your API key with your query as a HTTP header
The API Key should be included in the method request header as 'x-api-key: {yourAPIKey}'
Errors
Respond with a generic HTTP response code. At success, it is represented by 2xx code. 4xx occurs when there is an error in the information transmitted on the Client. 5xx occurs when there is an error on the Argos server.
Error Codes
3. GET /submission
Get a list of submissions.
The KYC / AML status can be checked by the GET request.
You can either check for the KYC status of a specific submission or get a list of KYC submissions with GET request.
If no parameter is provided, a list of all submissions is returned.
If a parameter is provided, filter the list by the given parameter.
To get a submission data of a specific submission, submission ID must be provided as a parameter.
Request URL
Input Data
Output Data
Sample Response1. Get one
Sample Response 2. Get List
3-1. GET /submission/applicant
Get a list of approved submissions submitted by the same person.
If there are multiple submissions from people with the same name, date of birth, nationality, gender, and face, it is judged as a duplicate submission, and you can check the duplicate submissions.
For a typical applicant that doesn't have duplicate submissions, only a single approved submission is pulled..
Since the search is based on applicant_id, applicant_id must be obtained from submission information..
Request URL
Input data
Output data
4. POST /submission/step1
Request URL
Input data
Output Data
Sample Response
5. POST /submission/step2
Request URL
Input data
Output Data
Notice kycStatus is "incomplete" and retryCount is increased in case of following:
No face detected in the face image
More than two faces detected in the face image
Face compare score is below 85
Liveness fraud check score is below 50
(Korean Only) ID verification fails
Sample Response
{
"verificationResult":"success",
"faceSimilarityScore":99,
"livenessScore":91,
"kycStatus":"pending",
"retryCount":0
}
5-1. POST /address_code
Only available to the projects with address 'collection' option.
Request URL
Sample Request 1
Sample Request 2
Sample Response
Input Data
Output Data
6. DELETE /submission
Delete a single submission data.
It will completely delete the submission data and the image files associated with the submission.
Caution!! Deleted submission cannot be restored.
Sample Request
Input Data
Sample Response
7. GET /report/aml
Returns an application/pdf report of AML screening result.
AML report is provided for each 'resourceId'. 'resourceId' is required to download AML report.
Request URL
Input Data
Output Data
As a response, application/pdf file format of the report is downloaded.
8. GET /image
Request URL
Input Data
Output Data
As a response, document file is downloaded.
Last updated