Customer Verification
Render a fullscreen capture component that analyzes frames from the user’s front-facing camera to determine whether the user matches a specified enrollmentId
that they have previously registered in IDmission’s customer database.
Example
import React, { useState } from 'react'
import { CustomerVerification } from 'idmission-web-sdk'
function getSessionId() {
return fetch('/api/get-session').then(resp => resp.json()).then(resp => resp.id)
}
function MyComponent() {
const [running, setRunning] = useState(false)
return (
<>
<button onClick={() => setRunning(true)}>Start Customer Verification</button>
{running && (
<CustomerVerification
sessionId={getSessionId}
enrollmentId="some-guy"
/>
)}
</>
)
}
Props
enrollmentId The unique identifier to match from previously enrolled customers. |
lang Language code to use. Supported values: ‘auto’ (detect based on user’s OS), ‘en’ (English), ‘es’ (Spanish). Defaults to auto. |
sessionId A session identifier generated with your IDmission credentials. |
submissionUrl URL to hit with all API requests. Defaults to the value specified in your decoded submissionToken . |
authUrl URL to validate session against. Defaults to https://portal-api.idmission.com. |
documentServiceUrl URL to upload captured documents to via Tus. |
companyId Company identifier to include with submission. |
jobId The ID of the job to associate with the submission. |
taskId The ID of the task to associate with the submission. |
needImmediateResponse Boolean flag to indicate if validation of the minimum resolution for an ID document image should be triggered. Defaults to true. |
webhooksEnabled Boolean flag to indicate whether customer-configured webhooks should be invoked after submission. |
webhooksURL URL to use when invoking customer-configured webhooks. |
webhooksClientTraceId A customer provided trace id to use when invoking customer-configured webhooks. |
webhooksStripSpecialCharacters Boolean flag to indicate whether non-alphanumeric characters should be removed from the submission data when customer-configured webhooks are invoked. |
webhooksSendInputImages Boolean flag to indicate whether raw user-captured images should be included in the submission data when customer-configured webhooks are invoked. |
webhooksSendProcessedImages Boolean flag to indicate whether processed user-captured images should be included in the submission data when customer-configured webhooks are invoked. |
sendBase64DocumentsInSwaggerProxy Boolean flag to enable download and replace behavior for documents in the Swagger Proxy API. Defaults to false. |
useDocumentServiceForLivenessChecks Boolean flag to indicate whether the liveness check photos should be uploaded to the document service, rather than sent as base64. Defaults to false. |
loadingOverlayMode String indicating which loading overlay screen should be used. Supported values: ‘default’ and ‘legacy’. Defaults to ‘default’. |
timeoutDurationMs The duration of time in milliseconds that the user may try to pass the realness check. Defaults to 15000 (15 seconds). |
modelLoadTimeoutMs Number of milliseconds indicating the maximum amount of time that should be spent trying to load the guided capture experience before giving up and resorting to the stock camera instead. Defaults to 45000 (45 seconds). |
skipSuccessScreen Boolean or async function to indicate whether to proceed automatically after capture guidance is satisfied. If an async function is supplied returning a boolean, it will be evaluated at the time of capture guidance satisfaction. Defaults to false . |
theme Name of an included theme or object containing theme properties. * |
assets Object containing any asset overrides. |
classNames Object containing any classNames for inner components. * |
colors Object containing any color overrides. |
verbiage Object containing any verbiage overrides. |
onBeforeDocumentUpload Callback function that fires immediately prior to each document upload, giving the client application an opportunity to specify custom asynchronous logic that captures the document contents before it is exchanged for a document token. The document content and metadata are passed in as parameters and a promise resolving to void or false should be returned. If the returned promise resolves to false, the document will not be uploaded. |
onDocumentUploadProgress Callback function that fires when progress information is available for a document upload. The progress info and metadata are passed in as parameters. |
onDocumentUploaded Callback function that fires immediately after each document upload, giving the client application an opportunity to specify custom asynchronous logic that captures the document token. The document token and metadata are passed in as parameters. |
onDocumentUploadFailed Callback function that fires when a document failed to upload. The error and metadata are passed in as parameters. |
onBeforeSubmit Callback function that fires immediately prior to submission, giving the client application an opportunity to specify custom asynchronous logic that mutates the request before it executes. The submission request is passed in as a parameter and a promise resolving to the updated request should be returned. |
onSubmit Callback function that fires when the user has completed the flow instead of making a call to IDmission’s servers, allowing customers to specify their own submission logic. Arguments: the request payload that would have been dispatched to IDmission’s API, which contains the images/documents/video submitted by the user. Note that when this parameter is supplied, onComplete will never fire, and the customer will need to implement their own error handling/retry logic. Use at your own risk! |
onComplete Callback function that fires when the user has completed the CustomerVerification flow. Arguments: the SubmissionResponse from IDmission’s API is passed as an argument to the customer’s application for further handling, which indicates whether the user passed the validation check, and the request payload dispatched to IDmission’s API, which contains the images submitted by the user. |
onCustomerMatched Callback function that fires when the user has completed the CustomerVerification flow and matches the specified customer enrollmentId . The SubmissionResponse from IDmission’s API is passed as an argument to the customer’s application for further handling, which indicates whether the user passed the validation check. |
onCustomerNotMatched Callback function that fires when the user has completed the CustomerVerification flow but does not match the specified customer enrollmentId . The SubmissionResponse from IDmission’s API is passed as an argument to the customer’s application for further handling, which indicates whether the user passed the validation check. |
onRequestFailure Callback function that fires when an error occurs during the submission process. Arguments: the Error object is passed as an argument to the customer’s application for further handling. |
onExitCapture Callback function that fires when the user clicks the exit button during ID or selfie capture. |
onExitAfterFailure Callback function that fires when the user clicks the exit button after failing the realness check. |
onUserCancel Callback function that fires when the user clicks the exit button from the loading overlay, declining to engage with IDmission. Binding this callback results in the cancel button being rendered on the loading overlay. |
onModelError Callback function that fires when the selfie capture models fail to load or fail during runtime. |
onCameraAccessDenied Callback function that fires when the camera access is denied. |
geolocationEnabled Boolean flag to indicate whether users should be prompted to share their location. Default is true . |
geolocationRequired Boolean flag to indicate whether users should be blocked from proceeding if they block location access. Default is false . |
debugMode Boolean flag to enable on-screen prediction information output. Default is false . |
Class Names
Assets
loadingOverlay.instructionImageUrl URL to the instruction image on the loading overlay. Defaults to https://websdk-cdn-dev.idmission.com/assets/Selfie-Image-1.png. |
loadingOverlay.cameraAccessDenied.imageUrl URL to the image to display when camera access is denied. Defaults to https://websdk-cdn-dev.idmission.com/assets/camera-disable-icon.png. |
loadingOverlay.microphoneAccessDenied.imageUrl URL to the image to display when microphone access is denied. Defaults to https://websdk-cdn-dev.idmission.com/assets/microphone-disable-icon.svg. |
failure.imageUrl URL to the image to display in the CustomerVerificationFailure screen. Defaults to https://websdk-cdn-dev.idmission.com/assets/manual_capture.png. |
failureImageUrl |