Overview
Silent Verification lets you verify users seamlessly without sending them a text message or asking them to enter a verification code within the application. This feature is available for Android, iOS, and React Native applications and requires implementation on both the back-end and front-end sides.This verification method is only available in France for Orange phone numbers.
Silent Verification works by coordinating between your application integrating the Prelude front-end SDK,
Prelude’s back-end APIs, and your end-user’s carrier APIs. An active cellular connection is required for
this to work properly.
Integration
This guide explains how to handle a verification flow that tries a “silent” method first, while handling fallback to a SMS (or similar) if that fails. The goal is to reduce user friction while maintaining robustness.- Integrate the Prelude SDK into your mobile application and advertise Silent Verification in the implemented features (see examples below). Otherwise, the system will default to message-based verification, even if Silent Verification is supported.
-
Trigger a verification request and forward it to the Prelude API along with a dispatch
identifier retrieved via the
dispatchSignals()
SDK method. This will return the verification method to be used. - Look at the method returned by the Prelude API. If “silent”, continue with the Silent Verification flow. If not, skip ahead to step 7.
-
Attempt to verify silently by calling the
verifySilent()
SDK method, providing the request URL received from the previous API call. This happens in the background without requiring any user input. - Upon success, take the code received and skip ahead to step 8. If the silent verification fails (e.g. due to network issues, or mismatching phone number), proceed to next step.
- Trigger another verification request. The Prelude API should now return a more conventional method like “message” (e.g., SMS or WhatsApp).
- Once a “message” method is confirmed, update the UI to show an input field where the user can manually enter the received verification code.
- Perform a follow-up “check” call to the Prelude API sending back the verification code received either via the silent verification method or via the message one.
Some local legislation may require you to inform the end-user about the fact that the Silent Verification
process will rely on their carrier network to verify they own the phone number.In this case, it is strongly advised to display a message similar to the following:
Automated phone number verification may use your carrier network, if supported. Data rates may apply.
Detailed flow

Example
Your mobile application must integrate with your back-end API. It’ll be your application’s responsibility to handle start the verification process and handle the response from your back-end API. In this example we imagine that your back-end API exposes a/verify
endpoint that accepts a POST
request
with the following body:
/check
endpoint that accepts a POST
request with the following
body:
backendClient
that
exposes both verify
and check
endpoints as methods.
It is recommended to integrate the signals dispatching at the beginning of the onboarding flow, as soon as
it is known that the phone number will be prompted (in case network connectivity could delay their
collection). It will then be required to forward the dispatch identifier along with the verification
request.Not doing so will make the system automatically fallback to a regular message-based verification even if
the phone number is known to support Silent Verification, as cellular connectivity may not be available.Locate your SDK key in your Prelude Dashboard settings. For additional implementation details, refer to the
front-end SDK documentation specific to your platform.