Import applicants

Imports applicants.

Overview

Use this method to import the applicant data. For example, when you already have a list of applicants and want to recheck them or to maintain data consistency.

Request example

curl -X POST 'https://api.sumsub.com/resources/applicants/-/ingestCompleted?levelName=basic-kyc-level' \
  -H 'Content-Type: application/json' \
  -d '{
      "externalUserId": "someClientUserId",
      "info": {
        "firstName": "John",
        "lastName": "Snow",
        "country": "GBR"
      },
      "review": {
        "elapsedSincePendingMs": 100,
        "elapsedSinceQueuedMs": 50,
        "createDate": "2022-11-21 08:25:32+0000",
        "reviewDate": "2022-11-21 08:25:36+0000",
        "reviewResult": {
           "moderationComment": "",
           "clientComment": "",
           "reviewAnswer": "GREEN"
        },
        "reviewStatus": "completed"
      }
   }'
Language
Authorization
Header
Click Try It! to start a request and see the response here!