Handling a Fallback KYC Inquiry
During API-based onboarding, when a consumer fails a KYC database-check you can choose to have them complete secondary validations such as document collection and selfie/image verification directly in your application. The process will be to use the value of the fallback_inquiry_id property from the consumer’s onboarding workflow to load a KYC component in your application configured for that user’s specific KYC next steps.
Scenario: Consumer Fails KYC Database Check
When a user fails a KYC database check after the Verify Identity step, we will provide a fallback_inquiry_id in the workflow api response.
The two properties to look for in this api response are:
consumer->kyc_status==NeedsReviewkyc->fallback_inquiry_id=> value
Launching the KYC Mobile SDK
Once you have retrieved the fallback_inquiry_id from the api response, your backend servers can provide that value to your mobile application to hydrate the Persona Mobile SDK. Initializing the Mobile SDK with this inquiry template will allow the consumer to complete the KYC portion of their onboarding.
in this scenario, we are assuming a mobile/native app built in React Native
You can read more about integrating the Persona KYC UI components into your mobile app here.

