React
This document explains how to integrate the verification flow from your React application
This document explains how to integrate the verification flow directly from your React application through our Javascript component to verify the identity of your users. This stage might be at the signup page of your application, or at a later point to enrich the profiles of your users. The guide assumes the preliminary steps have already been completed as explained in the initial setup section of the documentation.
We suggest you follow our best practice how to integrate Passbase in your wider system in the overview section.
You can either follow the integration guide below or also watch the video below that shows an integration. Please be aware that some property or function names might have slightly changed. Just compare to the latest code snippets here in the documentation.
Start by installing our component and its dependencies in your React project:
npm
yarn
$ npm i --save @passbase/button
$ yarn add @passbase/button
Import the React component from the newly installed npm package.
The package supports UMD modules, the ES import method is presented below.
src/App.js
import VerifyButton from "@passbase/button/react";
In order for the button to render correctly, you'll need to pass your previously generated apiKey as argument to the rendering function. Optionally you can also pass in handler functions like onFinish, onStart and onError to control the states of the button flow.
Property | Description |
apiKey | The public API Key you obtained from the developer dashboard |
onFinish: (identityAccessKey: string) => void | Method that is being called once a user clicks the "Finish" button identityAccessKey : UUID of the completed verification. You can use this to query our API. |
onSubmitted: (identityAccessKey: string) => void | Method that is being called once verification data is submitted to Passbase identityAccessKey : UUID of the completed verification. You can use this to query our API. |
onError: (errorCode: string, context: { step: StepID }) => void | errorCode: The reason why the flow failed. Can be one of the following:"CANCELLED_BY_USER" | "BIOMETRIC_AUTHENTICATION_FAILED" | "UNSUPPORTED_BROWSER" context: Additional error context information (contains the step where the error occurred)StepID: The step where the error occurred, can be one of the following "START" | "CONSENT" | "EMAIL" | "COUNTRY" | "RESOURCE CHOICE" | "RESOURCE | "SUMMARY" | "FINISHED" |
onStart: () => void | Method that is being called once a user starts the verification flow |
hidden | A boolean value used to visually hide the verification button. Can be used in tandem with start() method to create a custom button UI. |
src/App.js
function App() {
return (
<div className="App">
<VerifyButton
apiKey={"YOUR_API_KEY"}
onSubmitted={(identityAccessKey) => {}}
onFinish={(identityAccessKey) => {}}
onError={(errorCode) => {}}
onStart={() => {}}
/>;
</div>
);
}
Make sure you're using the publishable API key for this client side integration
The button should now render as shown here:

During the verification flow, your users will be asked to provide some information which you might already have in your application e.g. the user's email. In this case, you can use the prefillAttributes object to skip the email step.
When the Biometric Authentication feature is enabled and the email is prefilled, Passbase will check if the user is already verified on our platform. If yes, the flow will enter the Biometric Authentication mode. If not, the user enters the normal verification flow and has to provide all required documents selected in your developer dashboard's customization section.
Property | Value |
prefillAttributes | email: Your user's email. This will enable skipping the email step. |
| country: An ISO-3166 compliant country code. This will set the default dropdown selection of the country selection screen. |
<VerifyButton
apiKey={"YOUR_API_KEY"}
onFinish={(identityAccessKey) => {}}
prefillAttributes={{
email: "[email protected]",
country: "de"
}}
/>
In order for your application to interoperate with Passbase, you will need to add a reference to your users once the Verification is completed.
For that, you will need to keep track of the identityAccessKey returned by the onFinish or onSubmitted callbacks and associate it in your backend with your end users' id. We recommend saving this key after the onSubmitted method from your user's completed verification, or listen for the incoming webhooks to make a call to the Passbase API linking back the email address of the user.
import React from 'react';
import VerifyButton from "@passbase/button/react";
function App() {
const referenceUserWithKey = (key) => {
console.log(key)
// Make request to your backend/db and save the key to the user's profile
}
return (
<div className="App">
<VerifyButton
apiKey={"YOUR_PUBLISHABLE_API_KEY"}
onSubmitted={(identityAccessKey) => {
referenceUserWithKey(identityAccessKey)
}}
onFinish={(identityAccessKey) => {}}
onError={(errorCode) => {}}
onStart={() => {}}
prefillAttributes={{
email: "[email protected]"
}}
/>
</div>
);
}
export default App;
If you are tracking end users in your backend through an internal UUID, transaction number, stripe ID, etc., you can use the metaData object to securely pass encrypted end user information to identify completed verifications.
The metaData object allows you to pass an encrypted JSON string via a private key encoded in base64 on the client-side, and then Passbase will use your public key to return the data on the Passbase API.
Encryption should be completed on the server-side. Once you have completed the encryption, please enter the public encryption keys for each individual project within the developer dashboard.

After adding the public encryption keys within the developer dashboard, you will need to pass the private key encoded in base64 to Passbase through the client-side.
| Value |
metaData | Encrypted JSON string via the private key encoded in base64 |
import React from 'react';
import VerifyButton from "@passbase/button/react";
function App() {
const referenceUserWithKey = (key) => {
console.log(key)
// Make request to your backend/db and save the key to the user's profile
}
return (
<div className="App">
<VerifyButton
apiKey={"YOUR_PUBLISHABLE_API_KEY"}
onSubmitted={(identityAccessKey) => {
referenceUserWithKey(identityAccessKey)
}}
onFinish={(identityAccessKey) => {
// Open new window for end user to prevent duplicate verifications
window.location.href =("https://passbase.com/")
}}
onError={(errorCode) => {}}
onStart={() => {}}
prefillAttributes={{
email: "[email protected]"
}}
// Signed and Armored Metadata, which contain {internal_customer_id: "XYZ", "email": "[email protected]", "country": "de", ...}
metaData={{
"AJIZZDIZJADIOAJDOIZJAOIZJDOIAJIODZJIAJDIOZJAIOZDJALANLIKESJIZZOIZDJAOIZJDOZIAJDOIAZJDAZD"
}}
/>
</div>
);
}
After a user completes a verification and you receive the
VERIFICATION_REVIEWED
webhook event, it is time to call the Passbase Get Identity endpoint. Using this API endpoint, you will see the new metaData object returned.If the public encryption key is not added to the developer dashboard, you will not see the metaData information returned on the API.
{
id: "1234-1234-1234-1234",
resources: [...],
metadata: { internal_customer_id: "XYZ" }
}
If you wish to start the verification programmatically you can do so by invoking the start method with code.
import React, { useEffect } from "react";
import VerifyButton, { start } from "@passbase/button/react";
export default function App() {
useEffect(() => {
setTimeout(() => {
start();
}, 5000);
}, []);
return (
<div className="App">
<VerifyButton
apiKey={"YOUR_PUBLISHABLE_API_KEY"}
onSubmitted={(identityAccessKey) => {}}
onFinish={(identityAccessKey) => {}}
onError={(errorCode) => {}}
onStart={() => {}}
/>
</div>
);
}
Our component currently supports a set of customization options which will influence the appearance of the modal, once opened. The preferred way to customize this is via your developer dashboard's customization section.
Here you can choose amongst a variety of colors, fonts, accepted countries & much more.

Customization Section
The modal also supports a
darkMode
attribute, which supersedes the effects of any customization selected within the developer dashboard. This is especially useful if your App has a dark UI or you simply want to spare your users' eyes at night. You can activate the darkmode via the theme
attribute.Property | Value |
theme | darkMode: A boolean value indicating whether or not to enable the dark theme |
| systemDarkMode: A boolean value indicating whether the dark mode setting of the users OS should be applied (see https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) |
<VerifyButton
apiKey={"YOUR_API_KEY"}
onFinish={(identityAccessKey) => {}}
theme={{
darkMode: true,
systemDarkMode: true
}}
/>;

Dark Mode
We support a variety of different languages for the verification flow. As of this writing more than 10 including (English, Spanish, German & many more). If one is missing and you want us to add support for it, please reach out to our customer support.
The Verification flow automatically detects the language of the user's browser settings. If we support the language, the verification flow will be set to it. Otherwise the default is English.
If you wish to customize the appearance of the Verification button you may do so by following the example:
import React from "react";
import VerifyButton, { start } from "@passbase/button/react";
export default function App() {
return (
<div>
<button onClick={() => start()}>Custom Button</button>
<div className="App">
<VerifyButton
apiKey={"YOUR_PUBLISHABLE_API_KEY"}
onSubmitted={(identityAccessKey) => {}}
onFinish={(identityAccessKey) => {}}
onError={(errorCode) => {}}
onStart={() => {}}
hidden={true}
/>
</div>
</div>
);
}
If you've followed this integration guide, you have successfully integrated Passbase in your Website. You can also check out the code below that shows a working example and compare it with your own solution. To run the code press the Open Sandbox button in the lower right corner.
The demo needs to be in an window in order for the Javascript to work & render the Passbase verification flow. Hence open the Sandbox and then click the Open in New Window button in the top right corner to open the rendered page in a new tab.
You have successfully completed the Passbase React Integration! 🎉