Confirm applicant platform event

Overview

Use this method as the third step of the Device Intelligence usage flow. The request is required to confirm that the event (login, sign up, password reset, or 2FA reset) on the applicant side is completed.

Request example

curl -X POST \
     'https://api.sumsub.com/resources/applicants/-/kyt/txns/-/data?accessToken=_act-jwt-eyx8A8qkAWM9Tb2LSS6yuP8EoLqJtWKVsmhE6AgaCav5E28JAJiJidzG2qZIjMECQ6UWsuboKvMeM1HEhPTWF1ZPqJxcdtP0N8opXwJdCZLfetv5Ui516CloG6nKT9YUaZ' \
     -H 'content-type: application/json' \
     -d '{
            "applicant": {
              "fullName": "John Doe",
              "email": "[email protected]",
              "externalUserId": "KGFJ57657VJH"
            },
            "userPlatformEventInfo": {
              "type": "login",
              "passwordHash": "21354684686zdtgx358th4x84t4h3xft584h3fxt"
            },
            "type": "userPlatformEvent",
            "txnId": "finance0001"
          }'

Response explained

Since the applicant platform events are considered as event transactions, the response is a JSON file that represents the structured transaction information available in the Sumsub system. The existence of some fields depends on the transaction type and matched rules.

To overview the response structure and possible content with descriptions, refer to the following page.

📘

Note

You can review the applicant event check results on the Transactions page in the Dashboard.

Language
Credentials
Header
Click Try It! to start a request and see the response here!