Initialize verification

Initialize verification

With this request, you can start process of identity verification. In the request you can provide API with adress of your webhook server, where result of the verification will be sent. You can also send an url to which user will be redirected after verification. In response you will be provided with link to the verification website.

POST https://professional.signius.eu:8300/api/ra/users/{{user_email}}/identity-verification/{{method of verification}}

Headers

NameValue

Content-Type

application/json

Body

NameTypeDescription

callbackUrl

string

Address to your webhook server

redirectUrl

string

Address to which the user will be redirected after verification

Response

{
    "id": "02e59dd7-48f9-4695-b34c-abed796f056b",
    "identityVerificationStatus": "IN_PROGRESS",
    "targetUrl": "{link_to_verification_site}",
    "identityMethod": "{method of verification}",
    "session": {
        "id": "13fa7e03-d06e-4d23-866a-7800f5d7e7e8",
        "terms": true,
        "authenticatorTokenSerial": null,
        "blocked": false,
        "type": null
    }
}

Webhook

After verification a following response will be send to your webhook server:

{
    "status":"SUCCESS",
    "identifier":"{identifier address}"
}

Last updated