> ## 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.

# Reference

> Error code mappings between Prove and Grand Central for troubleshooting

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 = ["Prove API v2.0"];

<VendorApiVersionTag versions={vendorApiVersions} />

The Prove integration verifies customer identities using phone-based signals, returning a phone trust score, auto-filling user data, and verifying submitted details. For setup steps, see [Get started](/connectors/kyc-kyb/prove/get-started).

## Supported operations

The Prove connector supports the following operations.

### Phone number verification

* Retrieve a trust score for a submitted phone number

### User data auto-fill

* Retrieval of user personal information (first name, last name, date of birth, SSN number, address, and email address).

### User data verification

* Download all documents generated during the IDV process (for example, IDV process reports, face scan video, document scan images).

## Events

This connector is synchronous and doesn't publish or consume events.

## Error mapping

The following table maps each Prove error code to its Grand Central counterpart:

| Prove code | Grand Central code |
| :--------- | :----------------- |
| `1`        | `GC027`            |
| `2`        | `GC024`            |
| `3`        | `GC061`            |
| `408`      | `GC061`            |
| `1000`     | `GC025`            |
| `1001`     | `GC106`            |
| `1002`     | `GC025`            |
| `1003`     | `GC107`            |
| `1005`     | `GC107`            |
| `1006`     | `GC108`            |
| `1007`     | `GC109`            |
| `1010`     | `GC107`            |
| `1012`     | `GC107`            |
| `1038`     | `GC110`            |
| `1039`     | `GC060`            |
| `1102`     | `GC065`            |
| `1103`     | `GC065`            |

<Info>
  For a complete list of Grand Central error codes and their descriptions, see [Status codes, errors, and responses](/connectors/reference/error-codes).
</Info>
