Important Notes:

  1. This API retrieves all submission records, which may include a large volume of data.
  2. It is recommended to use pagination parameters for optimal performance.

1. Endpoint

GET/Submission/list
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 Example

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

4. Response

4-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}",
      "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"
        ]
      }
    }
  ]
}

This API enables you to efficiently retrieve and manage all KYC submission data.