Retrieve a Send Transfer

Retrieves the send transfer information
Send
Retrieve a Send Transfer
 last updated: 
November 30, 2023

You can retrieve the transfer information by passing the send transfer type and transfer id. The below example retrieves the transfer information of an intrabank transfer. You can replace intrabank with any other send transfer form factor:
- intrabank
- ach
- wire
- check
- card

ENDPOINT

  1. GET /v1/send/intrabank/{{transferId}}

RESPONSE

  1. {
  2.     "id": "tra-2ab6f020-f8fb-4b73-bbd3-5aac957cc09a",
  3.     "accountId": "acc-63d656eb-fedc-4250-8111-48a5ff0faed9",
  4.     "contactId": "con-ab8e4ddc-cf09-448d-aa19-f71527b8393c",
  5.     "name": "Bright Might LLC",
  6.     "accountNumber": "9990001149517700",
  7.     "routingNumber": "",
  8.     "address": {
  9.         "addressType": "",
  10.         "line1": "",
  11.         "line2": "",
  12.         "city": "",
  13.         "state": "",
  14.         "country": "",
  15.         "postalCode": ""
  16.     },
  17.     "amount": "25.00",
  18.     "status": "completed",
  19.     "description": "Fund",
  20.     "txnType": "debit",
  21.     "transferType": "intrabank",
  22.     "transferSubType": "originated",
  23.     "createdAt": "2021-12-16T20:56:06Z",
  24.     "modifiedAt": "2021-12-16T20:56:06Z",
  25.     "transferredAt": "2021-12-16T20:56:06Z",
  26.     "accountType": "",
  27.     "iban": "",
  28.     "valid": "",
  29.     "parentTransferId": "",
  30.     "reviewCode": "",
  31.     "reviewMessage": "",
  32.     "type": "",
  33.     "metadata": null
  34. }