Skip to main content

Client redirect to WEB UI

After successfully generating a token you should have a valid authToken that looks similarly to this:

"tSfnDiNBT16iP7ThpP6K8QfF2maTK0Vvkxfvq4YV".

Redirect action

You may initiate a HTTP redirect action for your client to https://ivs.idenfy.com/api/v2/redirect by appending a generated token as a URL query string parameter.

Query string parameter nameExample value
authTokentSfnDiNBT16iP7ThpP6K8QfF2maTK0Vvkxfvq4YV
Flow

Examples

An example redirect URL looks like this:
https://ivs.idenfy.com/api/v2/redirect?authToken=3FA5TFPA2ZE3LMPGGS1EGOJNJE

And after the redirection, the user will see our identity verification UI:

preview
<?php
header("Location: https://ivs.idenfy.com/api/v2/redirect?authToken=tSfnDiNBT16iP7ThpP6K8QfF2maTK0Vvkxfvq4YV");
exit;
?>

A full python flask example can be found here