Individual Modules Catalog

📘

This guide is specific to Web SDK 2.0. If you are still using 1.x, you can find documentation here. We strongly recommend upgrading - contact your Incode Representative for upgrade information.

The Incode Web SDK is composed of small, single-purpose modules. Each module ships independently and exposes (depending on the module) a web component, a headless Manager, or both.

This page is the complete catalog. For deep-dives, see the per-module reference pages linked below where they exist; otherwise consult Headless Mode for headless API patterns and Web Components for the consumer-element API surface.

New here? Most modules follow one of five implementation patterns (form-based, camera-capture, backend-process, document-signing, composite). Module Patterns documents each pattern's lifecycle once so per-module pages can stay focused on what's actually unique. Read that first if you're orienting on the SDK.

How to read this catalog

ColumnMeaning
Web componentIf present, registered automatically when you import the UI subpath. Use as a custom element (e.g. <incode-phone>).
Headless managerIf present, the factory function for the module's headless API (subscribe to state, drive the state machine yourself, render any UI).
Core importWhere the module's TypeScript types and headless API live.
UI importSide-effect import that registers the web component and lets you import its CSS. Empty when the module is headless-only.

For a tour of how to combine these into a full integration, start with Getting Started.


Identity capture

ModuleWeb componentHeadless managerCore importUI import
Selfie<incode-selfie>createSelfieManager@incodetech/core/selfie@incodetech/web/selfie
ID document<incode-id>createIdCaptureManager@incodetech/core/id@incodetech/web/id
ID OCRcreateIdOcrManager@incodetech/core/id-ocr
CPF OCRcreateCpfOcrManager@incodetech/core/cpf-ocr@incodetech/web/cpf-ocr
Document capture<incode-document-capture>createDocumentCaptureManager@incodetech/core/document-capture@incodetech/web/document-capture
Document uploadcreateDocumentUploadManager@incodetech/core/document-upload
Face match<incode-face-match>createFaceMatchManager@incodetech/core/face-match@incodetech/web/face-match
  • Selfie — face capture with ML-powered liveness detection. Supports single-frame, multi-modal, and video-liveness modes. Validates against masks, glasses, headwear, closed eyes, lighting. See Module: Selfie.
  • ID document — government ID, passport, and driver's-license capture with quality checks (blur, glare, perspective). See Module: ID.
  • ID OCR — extracts structured data from a captured ID image (name, DOB, address, ID number, etc.). See Module: ID OCR.
  • CPF OCR — Brazilian-specific OCR variant that extracts the CPF number from a captured ID. Ships as a Preact component plus headless manager; rendered automatically by <incode-flow> when useCPF: true is set on the flow config. No registered web-component tag — embed the Preact CpfOcr component or drive the headless manager directly.
  • Document capture — generic document capture (utility bills, lease agreements, tax docs) with multi-page support and file-picker fallback. See Module: Document Capture.
  • Document upload — file-picker-only upload path for documents that can't be captured live (e.g., third ID). See Module: Document Upload.
  • Face match — compares a captured selfie against the face on a previously captured ID and returns a match score. See Module: Face Match.

Contact verification

ModuleWeb componentHeadless managerCore importUI import
Phone<incode-phone>createPhoneManager@incodetech/core/phone@incodetech/web/phone
Email<incode-email>createEmailManager@incodetech/core/email@incodetech/web/email
  • Phone — phone-number capture with optional SMS OTP verification. See Module: Phone.
  • Email — email capture with optional OTP verification. See Module: Email.

Compliance & consent

ModuleWeb componentHeadless managerCore importUI import
Consent<incode-consent>createConsentManager@incodetech/core/consent@incodetech/web/consent
Mandatory consentcreateMandatoryConsentManager@incodetech/core/mandatory-consent
Geolocation<incode-geolocation>createGeolocationManager@incodetech/core/geolocation@incodetech/web/geolocation
Antifraud<incode-antifraud>createAntifraudManager@incodetech/core/antifraud@incodetech/web/antifraud
WatchlistcreateWatchlistManager@incodetech/core/watchlist
Custom watchlistcreateCustomWatchlistManager@incodetech/core/custom-watchlist
Watchlist for businesscreateWatchlistForBusinessManager@incodetech/core/watchlist-for-business
Government validationcreateGovernmentValidationManager@incodetech/core/government-validation
CURP validation<incode-curp-validation>createCurpValidationManager@incodetech/core/curp-validation@incodetech/web/curp-validation

Authentication & identity reuse

ModuleWeb componentHeadless managerCore importUI import
AuthenticationcreateAuthenticationManager@incodetech/core/authentication
Identity reuse<incode-identity-reuse>createIdentityReuseManager@incodetech/core/identity-reuse@incodetech/web/identity-reuse
  • Authentication — re-authenticate a returning user via fresh selfie capture matched against their stored biometric. Same camera-capture flow as Selfie. See Module: Authentication.
  • Identity reuse — recognizes a returning user via face match against their existing on-file biometric record and lets them choose to reuse the existing identity. See Module: Identity Reuse.

Signing

ModuleWeb componentHeadless managerCore importUI import
Signature<incode-signature>createSignatureManager@incodetech/core/signature@incodetech/web/signature
Electronic signature<incode-electronic-signature>createElectronicSignatureManager@incodetech/core/electronic-signature@incodetech/web/electronic-signature
AE signature<incode-ae-signature>createAeSignatureManager@incodetech/core/ae-signature@incodetech/web/ae-signature
QE signature<incode-qe-signature>createQeSignatureManager@incodetech/core/qe-signature@incodetech/web/qe-signature
  • Signature — handwritten signature capture on a touch surface or mouse-driven canvas. See Module: Signature.
  • Electronic signature, AE signature, QE signature — eIDAS-aligned signing flows. AE and QE are thin wrappers around Electronic Signature (same state machine, different consent keys). All three covered in Module: Electronic Signature.

Composite & orchestration

ModuleWeb componentHeadless managerCore importUI import
Flow (orchestrator)<incode-flow>createOrchestratedFlowManager, createFlowManager (legacy)@incodetech/core/flow@incodetech/web/flow
Workflow<incode-workflow>createWorkflowManager@incodetech/core/workflow@incodetech/web/workflow
eKYC<incode-ekyc>createEkycManager@incodetech/core/ekyc@incodetech/web/ekyc
eKYB<incode-ekyb>createEkybManager@incodetech/core/ekyb@incodetech/web/ekyb
Cross-document data match<incode-cross-document-data-match>createCrossDocumentDataMatchManager@incodetech/core/cross-document-data-match@incodetech/web/cross-document-data-match
Custom fieldscreateCustomFieldsManager@incodetech/core/custom-fields
Dynamic formscreateDynamicFormsManager@incodetech/core/dynamic-forms
Trust graphcreateTrustGraphManager@incodetech/core/trust-graph
  • Flow (orchestrator) — drives a dashboard-configured sequence of modules end-to-end. The default for most integrations. createOrchestratedFlowManager is the modern API; createFlowManager is legacy and stays for back-compat. See IncodeFlow Component and Headless Mode → Orchestrated Flow Manager.
  • Workflow — server-driven multi-step workflows where step ordering and configuration come from the backend per session, including custom-module callbacks. See Module: Workflow.
  • eKYC — Know Your Customer form module: collects identity verification data (name, DOB, address, etc.) with dashboard-driven field schema. See Module: eKYC.
  • eKYB — Know Your Business form module: business name, address, tax ID, plus UBOs. Country-aware schema. See Module: eKYB.
  • Cross-document data match — cross-references data across multiple captured documents to flag inconsistencies. See Module: Cross-Document Data Match.
  • Custom fields — collect arbitrary structured data (text, number, date, boolean) from a dashboard-defined schema. See Module: Custom Fields.
  • Dynamic forms — server-driven multi-screen form module. Screen schema, fields, and validation rules come from the backend per session — useful for jurisdiction-specific questionnaires that change without an SDK release. Typically driven by <incode-flow> (no public UI subpath); use the headless manager directly when you're stepping through forms outside the orchestrator.
  • Trust graph — backend-only risk-graph analysis. The orchestrator renders an empty shell while the server runs the analysis; the module advances to finished automatically once the backend reports done. No UI element, no config (TrustGraphConfig = Record<string, never>).

Utility

ModuleWeb componentHeadless managerCore importUI import
HomecreateHomeManager@incodetech/core/home
Redirect to mobile<incode-redirect-to-mobile>createRedirectToMobileManager@incodetech/core/redirect-to-mobile@incodetech/web/redirect-to-mobile
  • Home — the SDK's built-in home screen presented before a flow starts. Wired automatically by <incode-flow> when enableHome: true. See Module: Home.
  • Redirect to mobile — generates a QR code and a one-time URL that hands the user off from a desktop browser to their phone, where camera-bearing modules continue. See Module: Redirect to Mobile.

Helpers used by every integration

These aren't modules per se — they're SDK-wide helpers you'll hit on day one.

HelperImportWhat it does
setup@incodetech/coreConfigures the SDK (apiURL, token, optional WASM/i18n/UI options). Call before any module.
createSession@incodetech/core/sessionOpens a verification session, returns a session token. Production: call from your backend.
warmupWasm@incodetech/core/wasmPre-warms the WASM ML pipelines (selfie, idCapture). Optional but reduces first-frame latency. See WASM Configuration.
getRequiredWasmPipelines@incodetech/core/flowGiven the orchestrator's resolved flow, returns just the pipelines needed (so you don't warm up models you won't use).
subscribeEvent@incodetech/core/eventsSubscribes to the SDK's raw analytics event stream. See Event Callbacks.
createXxxManagerFromActor@incodetech/core/extensibilityFor advanced cases where you supply a pre-built XState actor (e.g., to mock services in tests or override actors in production).

Per-module reference pages

Every module has a dedicated reference page covering its tag, properties, configuration, state machine, and API methods. Pages cross-reference Module Patterns for the shared lifecycle (load / subscribe / reset / stop and pattern-specific transitions) so they stay focused on what's module-specific.

Identity capture: Selfie · ID Capture · ID OCR · Document Capture · Document Upload · Face Match

Contact verification: Phone · Email

Compliance & consent: Consent · Geolocation · Antifraud · Watchlist · Custom Watchlist · Watchlist for Business · Government Validation · CURP Validation

Authentication & identity reuse: Authentication · Identity Reuse

Signing: Signature · Electronic Signature (covers AE / QE variants)

Composite & orchestration: IncodeFlow Component · Workflow · eKYC · eKYB · Cross-Document Data Match · Custom Fields

Utility: Home · Redirect to Mobile

For niche fields not covered on a page, the TypeScript declarations shipped with each @incodetech/core/<name> subpath are authoritative — your editor's go-to-definition (or hover docs) takes you straight to them. If you need help, contact [email protected].