> ## Documentation Index
> Fetch the complete documentation index at: https://agenticbanking.backbase.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Streamline identity verification and accelerate customer onboarding with the Onfido connector

export const VendorApiVersionTag = ({versions, label = "Supports"}) => {
  useEffect(() => {
    if (!versions || versions.length === 0) {
      return undefined;
    }
    const findAndSegmentStart = (reference, target) => {
      let i = 0;
      while (i < reference.length && i < target.length && reference[i] === target[i]) {
        i += 1;
      }
      let start = i;
      while (start > 0 && (/[0-9.vR]/).test(target[start - 1])) {
        start -= 1;
      }
      return start;
    };
    const formatText = () => {
      const suffix = " operations";
      if (versions.length === 1) {
        return `${label} ${versions[0]}${suffix}`;
      }
      const [first, ...rest] = versions;
      const last = rest[rest.length - 1];
      const andStart = findAndSegmentStart(first, last);
      const lead = first.slice(0, andStart);
      if (versions.length === 2) {
        return `${label} ${first} and ${last.slice(andStart)}${suffix}`;
      }
      const stems = versions.map(version => version.slice(andStart));
      return `${label} ${lead}${stems.slice(0, -1).join(", ")}, and ${stems[stems.length - 1]}${suffix}`;
    };
    const text = formatText();
    const mountCallout = () => {
      const titleRow = document.querySelector("#page-title")?.parentElement;
      if (!titleRow) {
        return null;
      }
      let callout = titleRow.querySelector("[data-vendor-api-version-callout='true']");
      if (!callout) {
        callout = document.createElement("div");
        callout.dataset.vendorApiVersionCallout = "true";
        callout.className = "vendor-api-version-callout vendor-api-version-callout--in-title";
        titleRow.appendChild(callout);
      }
      callout.replaceChildren();
      const textEl = document.createElement("span");
      textEl.className = "vendor-api-version-text";
      textEl.textContent = text;
      callout.appendChild(textEl);
      return callout;
    };
    let callout = mountCallout();
    if (callout) {
      return () => {
        callout?.remove();
      };
    }
    const observer = new MutationObserver(() => {
      callout = mountCallout();
      if (callout) {
        observer.disconnect();
      }
    });
    observer.observe(document.body, {
      childList: true,
      subtree: true
    });
    return () => {
      observer.disconnect();
      callout?.remove();
    };
  }, [versions, label]);
  return null;
};

export const vendorApiVersions = ["Onfido API v3.6"];

<VendorApiVersionTag versions={vendorApiVersions} />

The Onfido connector provides connectivity with [Onfido](https://www.entrust.com/products/identity-verification), designed to help you streamline identity verification, enhance security, and accelerate customer onboarding.

### Key capabilities

<CardGroup cols={3}>
  <Card title="Real-time verification" icon="bolt">
    AI and biometric authentication for instant identity verification
  </Card>

  <Card title="Automated compliance" icon="shield-check">
    Streamlined KYC processes to meet regulatory requirements
  </Card>

  <Card title="Document downloads" icon="download">
    Access workflow artifacts, evidence reports, and audit trails
  </Card>

  <Card title="Webhook events" icon="bell">
    Receive push notifications when an Onfido identity verification workflow completes, without polling for results.
  </Card>
</CardGroup>

***

## Supported operations

The Onfido connector supports the following operations from the Grand Central Unified API:

### Outbound

| Operation                                 | Endpoint                    |
| :---------------------------------------- | :-------------------------- |
| Create an application and invoke workflow | `POST /applicant-workflow`  |
| Get workflow results                      | `POST /workflow-result`     |
| Download document from Onfido             | `POST /downloads/documents` |

### Inbound (webhook)

| Operation                                     | Endpoint                                                             |
| :-------------------------------------------- | :------------------------------------------------------------------- |
| Receive Onfido identity verification callback | `{PARTY_LIFECYCLE_INBOUND_BASE_URL}/webhooks/identity-verifications` |

<Note>
  Replace `{PARTY_LIFECYCLE_INBOUND_BASE_URL}` with the Party Lifecycle inbound API base URL provided during setup. Register this URL in your Onfido configuration to receive identity verification workflow results.
</Note>

### Core use cases supported

<CardGroup cols={2}>
  <Card title="Identity verification" icon="id-card" />

  <Card title="Biometric authentication" icon="fingerprint" />

  <Card title="Document verification" icon="file-check" />

  <Card title="Receive IDV workflow results" icon="bell" />
</CardGroup>

<Info>
  For information about the Grand Central Unified API endpoints that support these features, see [Reference](/connectors/kyc-kyb/onfido/reference).
</Info>

**Want to adopt the journey?** Check out the [Onboarding Backbase Engagement Banking Platform journey](https://backbase.io/documentation/digital-onboarding/latest/onboarding-journeys-steps/identity-verification-onfido/idv-onfido-journey-understand).
