How can I entice my user to verify their identity?
Check if a user didn't yet verify their identity by using this simple query :
query MyQuery {
user {
idVerified
identificationStatus
}
}
If the answer is false the user did not verify its identity. To prompt them to do so you can craft a oAuth url using this guide with the
idverified
scope. Here is an example of a URL: https://oauth.swan.io/oauth2/auth?response_type=code&client_id={YOUR_CLIENT_ID}&redirect_uri={YOUR_REGISTRATED_URI}&scope=openid%20offline%20idverified&state=kdqsjdlkjsqdlkqjsdlkjsqd
The
identificationStatus
gives you more details about the status of the process. Use this to know what precisely went wrong if the user is not verified.We will not force the user to verify their identity but we will give them the option to do so after they input their passcode. We will also send them a text message with a link that they can use anytime they want to restart the process. Learn more
Last modified 9mo ago