The Review Module provides two distinct review screens:
- Manual Flow Review: Allows users to review entered details before verification
- OCR Review: Enables review and correction of OCR-extracted information
Manual Flow Review
Overview
Overview
The Manual Flow Review screen presents two main sections:
- Personal Details: Name, date of birth, and address
- Document Details: Information for each captured ID

Implementation Guide
1
Initialize the Component
2
Mount the Component
3
Add HTML Container
Configuration Options
Basic Configuration
Basic Configuration
Advanced Configuration
Advanced Configuration
By default, the Review screen only shows submitted form details. To display specific details before submission, pass Details can also be hidden or made read-only
personal or documents configurations. These settings affect both review and edit screens.The personal and documents configs follow the same structure as their
respective modules. See the Personal Details and
Document Upload module documentation for details.
Passing Personal and Documents Config
Hide or Make Read Only
Verification Flow
Verification Flow

When
verify: true:- User details are saved
- Verification check runs automatically
- Loading screen appears during check
- Result screen displays based on check outcome
customResult: true to prevent default screens from mounting. Then handle these events to show your own screens:form:review:successform:review:failedform:review:partialform:review:pending
Event Handling
form:review:loaded
Emitted when Review screen initializes
form:review:partial
Triggers when some checks succeed but others fail
form:review:ready
Fires when submit button is clicked
OCR Review
Overview
Overview
The OCR Review screen allows users to verify and correct information extracted through OCR or IDV modules.

Implementation Guide
- With IDV Flow
- With OCR Flow
Document Field Configuration
Configuration Structure
Document fields are configured per document type, with country-specific configurations available.Field Configuration Reference
Available Field Types
Available Field Types
Driver's License
- State/Territory:
select - License Number:
input - Card Number:
input
Medicare Card
- Card Color:
select - Card Number:
input - Position:
input - Expiry:
date
Field Properties
Field Properties
| Property | Description |
|---|---|
| fieldType | Input type (select, input, date) |
| dataType | Data format (typically text) |
| label | Display label |
| name | Field identifier |
| hide | Toggle field visibility |
| helperText | Additional guidance text |
| placeholder | Input placeholder text |
Validation Rules
Validation Rules
Confirmation and button
Styling

instruction and cta properties, for example:

Handling Network Issues during submission
To handle network failures during review screen submission, OneSDK gives the opportunity to retry submissions up to three times, with clear error messages guiding them through network issues, ensuring a smoother and more transparent user experience. To change properties of retry mechanism, you can overridecta property by:
retryAmount: number of retry user can have, default is 3
timeoutRetryMiliseconds: number of miliseconds until retry button is clickable again, default is 3000
retryAttemptString: a string shown under Submit button to guide your user to retry, default is “Error submitting form. Give it a moment to retry.”
maxRetryAttemptedString: a string shown under Submit button where user has tried more than retryAmount, default is “Something went wrong, please contact customer service or try again in a few moments.”