Receive an Intrabank Pull

Receives an intrabank pull money transfer from a contact.
Receive
Receive an Intrabank Pull
 last updated: 
November 30, 2023

Receive an intrabank pull money transfer is done by passing the required account id, contact id, amount and description. Response is a transfer object.

ENDPOINT

  1. POST v1/receive/intrabank

REQUEST

  1. {
  2.     "accountId": "{{accountId}}",
  3.     "contactId": "{{contactId}}",
  4.     "amount": "10.00",
  5.     "description": "Intrabank Pull"
  6. }

RESPONSE

  1. {
  2.     "id": "tra-a7b38a86-c7a2-4eb1-a1cd-29f39bc609ff",
  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-16T22:41:24Z",
  24.     "modifiedAt": "2021-12-16T22:41:24Z",
  25.     "transferredAt": "2021-12-16T22:41:24Z",
  26.     "accountType": "",
  27.     "iban": "",
  28.     "valid": "",
  29.     "parentTransferId": "",
  30.     "reviewCode": "",
  31.     "reviewMessage": "",
  32.     "type": "",
  33.     "metadata": null
  34. }