List all Intrabanks Pushed

‍Retrieves list of all Intrabank push money transfers sent from an account
Send
List all Intrabanks Pushed
 last updated: 
November 30, 2023

ENDPOINT

  1. GET v1/send/intrabank?accountId={{accountId}}

FILTERS

The table below describes various filters that can be passed as query parameters to narrow the response.

Filter Type Description
offset int start index (default = 0)
limit int number of records to return (default = 25, max = 100)
accountId string account ID
txnType enum credit, debit
modifiedStartTime string modified time in ISO UTC format (YYYY-MM-DDThh:mm:ssZ)
modifiedEndTime string modified time in ISO UTC format (YYYY-MM-DDThh:mm:ssZ)
externalId string Matches the externalId key if set in the object's metadata


RESPONSE

  1. {
  2.     "total": 1,
  3.     "data": [
  4.         {
  5.             "id": "tra-baa8184e-3361-4e12-9ecd-4432eee0fc14",
  6.             "accountId": "acc-63d656eb-fedc-4250-8111-48a5ff0faed9",
  7.             "contactId": "con-ab8e4ddc-cf09-448d-aa19-f71527b8393c",
  8.             "name": "Bright Might LLC",
  9.             "accountNumber": "9990001149517700",
  10.             "routingNumber": "",
  11.             "address": {
  12.                 "addressType": "",
  13.                 "line1": "",
  14.                 "line2": "",
  15.                 "city": "",
  16.                 "state": "",
  17.                 "country": "",
  18.                 "postalCode": ""
  19.             },
  20.             "amount": "10.00",
  21.             "status": "completed",
  22.             "description": "Funding",
  23.             "txnType": "debit",
  24.             "transferType": "intrabank",
  25.             "transferSubType": "originated",
  26.             "createdAt": "2021-12-16T06:32:37Z",
  27.             "modifiedAt": "2021-12-16T06:32:37Z",
  28.             "transferredAt": "2021-12-16T06:32:37Z",
  29.             "accountType": "",
  30.             "iban": "",
  31.             "valid": "",
  32.             "parentTransferId": "",
  33.             "reviewCode": "",
  34.             "reviewMessage": "",
  35.             "type": "",
  36.             "metadata": null
  37.         }
  38.     ]
  39. }