idNow

Capability: eIDV

Market: CEE

Business Capabilities

The ID Now connector validates identity documents and extracts text data from document scans or photos. Customers verify their identity by photographing their ID card or uploading an existing photo. The connector handles data in a GDPR-compliant manner, and you can delete stored data from your AriadNext account at any time.

ID Now supports two liveness detection modes:

  • Document liveness: The user moves the document in specific directions to prove it is not a copy or a fake.

  • Biometric liveness: The user performs an action (for example, moving their head) to prove they are a real person. The system compares the user's face to the photo on their ID document.

The connector is ADR (Authority for the Digitization of Romania) compliant.

NOTE  
To learn how to use IDnow with Workflow Designer, go to IDnow page.

Key Features

  • ID validation prevents fraud by verifying document authenticity in real time.

  • Extracted data auto-populates form fields, removing the need for manual entry.

  • Speeds up KYC processes with real-time document capture and checks.

  • Supports both document liveness and biometric liveness detection.

  • GDPR-compliant data handling with on-demand data deletion.

Applications

  • Customer onboarding

  • Account opening

  • Loan applications

  • Compliance processes

  • Claims handling

  • Mortgage processing

Configuration

You configure the ID Now connector through JSON key-value pairs. The following table lists the available settings:

Setting JSON Key Description
UID File FileUIDAttribute Source entity attribute name where the unique ID of the AriadNext file is saved. Used for retrieving reports.
Workflow entity SourceEntityPrimaryAttributeName Primary key attribute name.
ADR Compliant isAdrCompliant true = ADR compliant; false = not ADR compliant.
Configuration code ConfigurationCode Configuration code from the initial configuration call. Provided by FintechOS at implementation.
Webhook endpoint name WebhookEndpointName Array of notification endpoint names from the initial configuration call. Provided by FintechOS at implementation.
Features Features DocumentLiveness: set to true to use document liveness. BiometricLiveness: set to true for biometric liveness (requires DocumentLiveness = true).
Source entity SourceEntityName Entity associated with the digital journey calling the process. Required on edit forms to update business status after a scan.
Redirect on success MaskNextStepUrlSuccess UI redirect after a successful scan: entity, form, and section (optional).
Redirect on failure MaskNextStepUrlFail UI redirect after maximum failed attempts: entity, form, and section (optional).
Localization UseLocalization true to use UI localization.
Widget Configuration WidgetConf Customizes the SDK UI appearance (display mode, colors, and fonts).
Retain SDK logs DisableLogSDKMessages true to stop retaining SDK logs.
Log severity level LogLevel error for errors only, debug for all messages.
Log browser details DisableSaveBrowserDetails true to stop storing user platform details.

 

Sample Configuration

Copy
{
  "FileUIDAttribute": "fileUID",
  "SourceEntityPrimaryAttributeName": "FTOSTestProcessorsId",
  "SourceEntityName": "FTOS_Test_Processors",
  "Language": "EN",
  "isAdrCompliant": false,
  "ConfigurationCode": "fintechos_conf_1",
  "WebhookEndpointName": ["test_webhooks_endpoint"],
  "Features": {
    "DocumentLiveness": true,
    "BiometricLiveness": true
  },
  "maskNextStepURLSuccess": {
    "entity": "FTOS_Test_Processors",
    "form": "AriadNext",
    "section": "SuccessStep"
  },
  "maskNextStepURLFail": {
    "entity": "FTOS_Test_Processors",
    "form": "AriadNext",
    "section": "ErrorStep"
  },
  "UseLocalization": true
}