Submission
Projection
- POST/Projection
- GET/Projection
- DELETE/Projection
GET/Submission
GET/Submission/email
This API allows you to retrieve all KYC submission data associated with a specific email address. It provides KYC identity information, KYC results, AML results, rejection reasons and codes, retry reasons and codes, and more.
1. Endpoint
GET/Submission/email
GET https://rest-api.argosidentity.com/v3/submission/applicant
2. Authentication
Include the API key in the x-api-key header:
x-api-key
x-api-key: {yourAPIKey}
3. Request Parameters
The email address of the user whose submissions you want to retrieve.
4. Request Example
GET/Submission/email
curl --location --request GET 'https://rest-api.argosidentity.com/v3/submission?email={email}' \
--header 'x-api-key: {yourAPIKey}'
5. Response
5-1. Success Response
result.json
{
"Items": [
{
"data": {
"name": "{name}",
"gender": "male",
"nationality": "KOR",
"date_of_birth": "YYYY-MM-DD"
},
"email": "{email}",
"submission_id": "{submission_id}",
"duplicated_information" : "{duplicated_information}",
"created_at": "YYYY-MM-DD-HH-MM-SS-ZZZ",
"reviewer": "{reviewer}",
"kyc": {
"result": "rejected",
"comment": [
"Multiple invalid KYC attempts"
],
"commentCode": [
"too_many_retry"
]
}
},
{
"data": {
"name": "{name}",
"gender": "male",
"nationality": "BRA",
"date_of_birth": "YYYY-MM-DD"
},
"email": "{email}",
"submission_id": "{submission_id}",
"created_at": "YYYY-MM-DD-HH-MM-SS-ZZZ",
"pending_at": "YYYY-MM-DD-HH-MM-SS-ZZZ",
"reviewer": "{reviewer}",
"kyc": {
"result": "rejected",
"comment": [
"test"
],
"commentCode": [
"other"
]
}
},
{
"data": {
"name": "{name}",
"gender": "male",
"nationality": "KOR",
"date_of_birth": "YYYY-MM-DD"
},
"email": "{email}",
"submission_id": "{submission_id}",
"created_at": "YYYY-MM-DD-HH-MM-SS-ZZZ",
"reviewer": "{reviewer}",
"kyc": {
"result": "rejected",
"comment": [
"Multiple invalid KYC attempts"
],
"commentCode": [
"too_many_retry"
]
}
}
]
}
This API allows you to efficiently retrieve and manage all KYC submissions associated with a specific email address
Was this page helpful?
Assistant
Responses are generated using AI and may contain mistakes.