Retrieve an Intrabank Batch

Retrieve a batch of intrabank transfers between accounts on your program
Batch
Retrieve an Intrabank Batch
 last updated: 
November 30, 2023

You can retrieve the transfer information by passing the batch ID. For

ENDPOINT

  1. GET /v1/batch/intrabank/{{batchId}}

RESPONSE

  1. {
  2.  "batchId": "bch-d8b8825a-baa9-469c-9d32-8f6677031350",
  3.  "status": "completed",
  4.  "transferType": "intrabank",
  5.  "totalCount": 2,
  6.  "successCount": 2,
  7.  "failedCount": 0,
  8.  "createdAt": "2023-07-17T16:50:03Z",
  9.  "completedAt": "2023-07-17T16:50:06Z",
  10.  "modifiedAt": "2023-07-17T16:50:06Z"
  11. }

To retrieve a specific transaction from a batch, add the sequence number to the endpoint as follows.

ENDPOINT

  1. GET /v1/batch/intrabank/{{batchId}}/seq/{{sequenceId}}

RESPONSE

  1. {
  2.    "batchId": "bch-d8b8825a-baa9-469c-9d32-8f6677031350",
  3.    "sequenceId": "1",
  4.    "transferType": "intrabank",
  5.    "transactionId": "txn-f7c3c17d-b40d-4f08-90e6-515523ffd816",
  6.    "status": "success",
  7.    "reviewCode": "",
  8.    "reviewReason": "",
  9.    "accountId": "acc-cdc4ca0a-2f1b-4c0b-9964-2339268c2d7b",
  10.    "contactId": "con-9af9d0b5-41b6-4fb7-8e88-3790c657e0a1",
  11.    "amount": "25.00",
  12.    "title": "Batch intrabank 1",
  13.    "description": "Funding",
  14.    "createdAt": "2023-07-17T16:50:03Z",
  15.    "modifiedAt": "2023-07-17T16:50:03Z"
  16. }