The Manual Document screen enables secure ID capture from your users. You can configure it to collect one or multiple forms of identification, with full customization options.
The Manual Document screen enables secure ID capture from your users. You can configure it to collect one or multiple forms of identification, with full customization options.
const document = oneSdk.component('form', { // Set component name to identify this as document collection screen name: "DOCUMENT", // Use manual input mode rather than OCR scanning type: "manual", // Require user to submit two forms of identification numberOfIDs: 2, // Configure the main heading title: { label: "Choose Your Identification" }, // Add explanatory text below the heading descriptions: [ {label: 'We need two forms of ID to verify your identity'} ]});
Copy
Ask AI
const document = oneSdk.component('form', { // Set component name to identify this as document collection screen name: "DOCUMENT", // Use manual input mode rather than OCR scanning type: "manual", // Require user to submit two forms of identification numberOfIDs: 2, // Configure the main heading with custom styling title: { label: "Identity Verification", style: "custom-title-class" // Apply custom CSS class to title }, // Add explanatory text with custom styling descriptions: [ { label: 'Please provide two government-issued IDs', style: 'ff-description' // Apply OneSDK's built-in description styling } ]});