Getting started
3 min read
Add Footprint.js to your app
Go to the Footprint developer dashboard and create a new
Onboarding configuration
- Select the “standard” list of IDV fields to collect or customize the fields.
- Select the “standard” list of IDV fields you require access to decrypt.
Grab the Onboarding Publishable Key, for example
ob_test_VMooXd04EUlnu3AvMYKjMW
.Add the
footprint.js
script to your app.
html
<head>
<link
rel="stylesheet"
href="https://unpkg.com/@onefootprint/footprint-js@latest/dist/footprint-js.css"
/>
</head>
<body>
...
<script
crossorigin
src="https://unpkg.com/@onefootprint/footprint-js@latest/dist/footprint-js.umd.js"
></script>
</body>
or
bash
# With NPM npm install @onefootprint/footprint-js # With yarn yarn add @onefootprint/footprint-js
- Embed the Footprint button.
html
<div id="footprint-button" data-public-key="pk_test_yflLnFW219f9bC0pdyGd"></div>
- Add your Footprint completion handler
javascript
window.onFootprintCompleted = function (token) {
// TODO: Post the token to your server
};
- To customize the button placement, the easiest way is to wrap the button in a div and apply the styles to this div:
html
<style>
.container {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
</style>
<div class="container">
<div
id="footprint-button"
data-public-key="ob_test_VMooXd04EUlnu3AvMYKjMW"
></div>
</div>
Click here to check out a full example.
Verify the Footprint token server-side
Setup and authentication
Go to the Footprint developer dashboard and generate a new Secret API Key. This will look something like sk_test_CXUsbCR8j2kH6e5GeEl8eSBnQTIPCUaKpv
. Add this to the credential manager of your server-side app. To learn more about server-side API authentication, read the short guide on API Authentication
Validate the onboarding token (from Step 5 above)
You should create an endpoint on your backend to handle signups. It should receive the validation token given in step 5 above from your frontend and pass it to Footprint’s backend in order to authenticate and verify the user:
bash
curl -X POST https://api.onefootprint.com/onboarding/session/validate \ -u sk_test_CXUsbCR8j2kH6e5GeEl8eSBnQTIPCUaKpv: \ -d '{"validation_token": "vtok_udLaWUxPBo3fss603v8kY8k9ssjboxfwI"}'
Footprint will give you some information from this onboarding session. We’ll also give you a fp_id
, which looks like fp_id_GSxJr68GAf5jUT3pdL9ndjf7TLkA3GCX
json
{ "user": { "fp_id": "fp_id_GSxJr68GAf5jUT3pdL9ndjf7TLkA3GCX", "status": "pass", "requires_manual_review": false } }
fp_id
in your database tied to the individual user. It is the
identifier you will send to request any user-specific information.
Check the onboarding decision status
Using the status
and required_manual_review
fields to decide whether or not to onboard this user to your product.
Status | Review | What does this mean? |
---|---|---|
pass | False | Verification checks succeeded and this user can be onboarded. |
pass | True | Verification checks succeeded, but Footprint suggests manually reviewing identified risks. |
fail | False | Verification failed. Do not onboard this user. |
fail | True | Verification failed, but Footprint suggests manually checking possible acceptance criteria. |
Optionally, decrypt identity fields from the user’s vault:
bash
curl -X POST https://api.onefootprint.com/users/fp_id_GSxJr68GAf5jUT3pdL9ndjf7TLkA3GCX/vault/decrypt \ -u sk_test_CXUsbCR8j2kH6e5GeEl8eSBnQTIPCUaKpv: \ -d '{"fields": ["id.dob", "id.last_name", "id.ssn4"], "reason": "getting started test"}'
json
{ "id.dob": "1988-12-25", "id.last_name": "Smith", "id.ssn4": "1212" }