Retrieve a Receive Transfer

Retrieves the receive transfer information
Receive
Retrieve a Receive Transfer
 last updated: 
November 30, 2023

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

ENDPOINT

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

RESPONSE

  1. {
  2.     "id": "tra-5db46bae-758b-46f9-8fbe-99bbd100e4d4",
  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": "10.00",
  18.     "status": "completed",
  19.     "description": "Intrabank Pull",
  20.     "txnType": "credit",
  21.     "transferType": "intrabank",
  22.     "transferSubType": "originated",
  23.     "createdAt": "2021-12-17T00:58:13Z",
  24.     "modifiedAt": "2021-12-17T00:58:13Z",
  25.     "transferredAt": "2021-12-17T00:58:13Z",
  26.     "accountType": "",
  27.     "iban": "",
  28.     "valid": "",
  29.     "parentTransferId": "",
  30.     "reviewCode": "",
  31.     "reviewMessage": "",
  32.     "type": "",
  33.     "metadata": null
  34. }