Client ID
- your client identifier.Client Secret
- your secret key.Redirect URL
- a URL that your user is redirected to on successful identity verification.?id=14567678&[email protected]
. Please avoid use of thecode
one, as before redirect we add it with the granted code in its value.https://api.app.authenteq.com/web-idv/verification-url?redirectUrl=<redirectUrl>
<redirectUrl>
should be replaced with one of your redirect URLs corresponding to your current deployment environment.Authorization
header like so:<client_id>
, <client_secret>
and <redirect_url>
with proper values:code
parameter that you will use to retrieve the verification result details.code
will not be present on the redirect URL. The endpoint you provide as the redirect URL must handle that case. If the code
is missing we recommend redirecting the user to the beginning of the flow.https://api.app.authenteq.com/web-idv/verification-result?redirectUrl=<redirectUrl>&code=<code>
<redirectUrl>
should be replaced with the same URL you used to request the verification session and <code>
with one you got on redirect earlier.Authorization
header like so:<client_id>
, <client_secret>
, <redirect_url>
and <code>
with proper values: