Verify your users’ identity documents
Create sessions and collect identity documents.
This guide explains how to use Stripe Identity to securely collect and verify identity documents.
Before you begin
- Activate your account.
- Fill out your Stripe Identity application.
- (Optional) Customize your brand settings on the branding settings page.
Send your users to Stripe to upload their identity documents. Here’s what you’ll do:
- Add a verification button to your webpage that redirects to Stripe Identity.
- Display a confirmation page on identity document submission.
- Handle verification results.
Set up StripeServer-side
First, register for a Stripe account.
Then install the libraries for access to the Stripe API from your application:
Add a button to your websiteClient-side
Create a button on your website for starting the verification.
Redirect to Stripe IdentityClient-sideServer-side
Set up the button to redirect to Stripe Identity. After clicking the button, your frontend redirects to a Stripe-hosted page where they can capture and upload a picture of their passport, driver’s license, or national ID.
The redirect to Stripe Identity cuts down on development time and maintenance and gives you added security. It also decreases the amount of private information you handle on your site, allows you to support users in a variety of platforms and languages, and allows you to customize the style to match your branding.
Create a VerificationSession
A VerificationSession is the programmatic representation of the verification. It contains details about the type of verification, such as what check to perform. You can expand the verified outputs field to see details of the data that was verified.
After successfully creating a VerificationSession
, send the session URL to the frontend to redirect to Stripe Identity.
You need a server-side endpoint to create the VerificationSession. Creating the VerificationSession
server-side prevents malicious users from overriding verification options and incurring processing charges on your account. Add authentication to this endpoint by including a user reference in the session metadata or storing the session ID in your database.
Caution
The session URL is single-use and expires after 48 hours. Don’t store it, log it, embed it in a URL, or expose it to anyone other than the user. Send only the session URL to your frontend to avoid exposing verification configuration or results.
Test your endpoint by starting your web server (for example, localhost:4242
) and sending a POST request with curl to create a VerificationSession:
curl -X POST -is "http://localhost:4242/create-verification-session" -d ""
The response in your terminal looks like this:
HTTP/1.1 200 OK Content-Type: application/json { id: "vs_QdfQQ6xfGNJR7ogV6", url: "https://verify.stripe.com/start/QdfQQ6xfxNJR7ogV6Z6Wp..." }
Add an event handler to the verify button
Now that you have a button and an endpoint to create a VerificationSession, modify the button to redirect to the session URL when clicked:
Test the redirect
Test that the verify button redirects to Stripe Identity:
- Click the verify button.
- Ensure your browser redirects to Stripe Identity.
If your integration isn’t working:
- Open the Network tab in your browser’s developer tools.
- Click the verify button to see if it makes an XHR request to your server-side endpoint (
POST /create-verification-session
). - Verify that the request returns a 200 status.
- Use
console.
inside your button click listener to confirm that it returns the correct data.log(session)
Handle verification events
Document checks are typically completed as soon as the user redirects back to your site and you can retrieve the result from the API immediately. In some rare cases, the document verification isn’t ready yet and must continue asynchronously. In these cases, you’re notified through webhooks when the verification result is ready. After the processing completes, the VerificationSession status changes from processing
to verified
.
Stripe sends the following events when the session status changes:
Event name | Description | Next steps |
---|---|---|
identity.verification_session.verified | Processing of all the verification checks have completed, and they’re all successfully verified. | Trigger relevant actions in your application. |
identity.verification_session.requires_input | Processing of all the verification checks have completed, and at least one of the checks failed. | Trigger relevant actions in your application and potentially allow your user to retry the verification. |
Use a webhook handler to receive these events and automate actions like sending a confirmation email, updating the verification results in your database, or completing an onboarding step. You can also view verification events in the Dashboard.
Receive events and run business actions
With code
Build a webhook handler to listen for events and build custom asynchronous verification flows. Test and debug your webhook integration locally with the Stripe CLI.
Without code
Use the Dashboard to view all your verifications, inspect collected data, and understand verification failures.