Completing Verification
Once you receive a callback in your VerificationCallback instance with the requestCode TYPE_MISSED_CALL_RECEIVED or TYPE_OTP_RECEIVED , you can complete the verification process by calling the following method from within your activity :
Copy
TrueProfile profile = new TrueProfile.Builder(firstName, lastName).build();You need to create a TrueProfile instance by passing the user's first and last name as defined above.
Depending on whether the verification medium is drop call or OTP, you need to call one of the following methods respectively:
DropcallOTPCopy
TruecallerSDK.getInstance().verifyMissedCall(profile, apiCallback)You need to call this method once you have received callback with requestCode as TYPE_MISSED_CALL_RECEIVED in your VerificationCallback instance
After you call the above method, you will receive a callback in your VerificationCallback instance with requestCode as TYPE_VERIFICATION_COMPLETE, which completes your verification process.
Whenever you get the verification callback with requestType as TYPE_VERIFICATION_COMPLETE, you would get an accessToken as a parameter in the verificationDataBundle. You can use this access token to validate the authenticity of the verification flow by making an API call from your server to Truecaller's server. For details on this part, please refer here.
Last updated