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

> Includes both OBPM Batch outbound and inbound 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 = ["Oracle OBPM API v14.5", "Oracle OBPM API v14.7"];

<VendorApiVersionTag versions={vendorApiVersions} />

The **Grand Central OBPM Batch Connector** provides connectivity with **Oracle Banking Payments Manager (OBPM)** for batch payment processing. The **OBPM Batch outbound connector** generates PAIN.001 files for batch payment instructions, enabling high-volume payment processing through standardized ISO 20022 messaging. Additionally, the **OBPM Batch inbound connector** supports reading PAIN.002 files received from OBPM and transmitting payment and batch status information to the frontend system through the Sync Hub platform.

## Key capabilities

<CardGroup cols={3}>
  <Card title="PAIN.001 generation" icon="file-export">
    Generate ISO 20022 compliant payment initiation files.
  </Card>

  <Card title="Batch processing" icon="layer-group">
    Process high-volume payment batches efficiently.
  </Card>

  <Card title="PAIN.002 status update" icon="file-import">
    Tracks batch submission and processing status.
  </Card>
</CardGroup>

***

## Supported Grand Central endpoints

The OBPM Batch Connector supports the following operations from the Grand Central Unified API:

| Method                                         | **Operation**             | **Endpoint**        |
| :--------------------------------------------- | :------------------------ | :------------------ |
| <span className="http-method-post">POST</span> | Submit batch payment file | `{baseURL}/batches` |

<Info>
  To receive status updates on initiated payments, the OBPM Batch inbound connector listens for information through a dedicated URL.
</Info>

<Info>
  This connector is dedicated to batch outbound processing and generates PAIN.001 files for the payment processor. For single payment operations, use the standard OBPM Connector.
</Info>
