Start document verification
This endpoint allows you to start a verification of a user’s driver license.
This ident can be used to start the process with IDnow app.
curl -X POST "https://platform.tier-services.io/v1/document/driver-license/start" -H "X-Firebase-Auth: JWT"
Click to expand JSON data response
{"ident":"ZXK-XXXXX"}
Status of document verification
This endpoint allows you to get the status of the verification of the user’s driver license.
Possible values are pending
, verified
or not_started
. The ident is the one the result is associated with and can be used to continue a previously canceled verification process.
curl "https://platform.tier-services.io/v1/document/driver-license/status"
-H "X-Firebase-Auth: JWT"
Click to expand JSON data response
{"verification":"pending", "ident": "ZXK-XXXXX"}
Delete your document verification
This endpoint allows you to restart the verification of your driver’s license.
Restarting your verification makes you lose your previous successful verification and are not eligible for driving e-Mopeds anymore until a new successful verification.
curl -X DELETE "https://platform.tier-services.io/v1/document/driver-license/status" -H "X-Firebase-Auth: JWT"