Verification Status
Once the user has successfully submitted their KYC, their verification status will automatically be set to pending until an operator reviews and verifies their account.
To view the current status of the user, there are two options:
- Either the user may login to the KYC portal as per usual. Instead of starting the flow, the user will instead be greeted by a screen displaying their status.
- Alternatively, the app may call the api
/api/Registration/statusto retrieve the current status. Note that an access token is still required here.
tip
Please note that the user will also be notified by email whenever their registration status is changed.
Retrieving Automatic Updates on Change in User Status.
To be notified once the user's status has been approved, the following endpoint may be used:
/api/Registration/externalId
The following parameters are required:
externalId- Your system's internal identifier for that particular user.externalUpdateUrl- The endpoint which should be called when the status is changed.externalAuthToken- Any authentication token necessary to call the above endpoint.
tip
Note that currently, status updates will only be sent when the user's registration status has been set to confirmed.