Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

📁 Table of Contents

Table of Contents
minLevel1
maxLevel7

...

  1. Create Identity Verification (IDV) by making POST request to IDV API - /v1/identity-verifications/ endpoint with setupId in the request body. More information about setups you can find /wiki/spaces/PUB/pages/2320990311.
    Request example:

    Code Block
    {
      "externalReferenceId": "123",
      "registration": {
        "dateOfBirth": "2021-01-14",
        "email": "John@email.com",
        "firstName": "John",
        "lastName": "Johnson",
        "middleName": "Adam",
        "personalCode": "1214148111000",
        "phoneNumber": 370624515141,
        "countryCode": "LT"
      },
      "setupId": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
    }

    Response example:

    Code Block
    {
      "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
    }

...

  1. Track customer onboarding progress by receiving webhooks.
    KycIdentification webhooks will contain payload information from the Ondato Kyc Identification API recourse resource /v1/identifications/{id}.
    Idv webhooks will contain payload information from the Ondato IDV API recourse resource /v1/identity-verifications.
    To learn more about Ondato webhooks and how start receiving them please see the following page: Webhooks.

...