Multi-Document Flow

Our identity verification flow supports multiple documents now. It means the user has to provide up to 3 documents to pass identity verification. To use it on Mobile, just migrate to the latest version of our Mobile SDK. To use it on Web (where it's turned off by default for backward compatibility), just add the AQ-Multi-Document-Flow header with the On value into your HTTP request for getting a verification URL like:

curl --user <clientId>:<clientSecret> \
     --location 'https://api.app.authenteq.com/web-idv/verification-url' \
     --get --data-urlencode 'redirectUrl=<redirectUrl>' \
     --header 'AQ-Multi-Document-Flow: On'
     
{"verificationUrl":"https://web-idv.app.authenteq.com/verify?token=..."}

Last updated