Send an intrabank push money transfer is done by passing the required account id, contact id, amount and description. Response is a transfer object.
ENDPOINT
- POST v1/send/intrabank
REQUEST
- {
- "accountId": "{{accountId}}",
- "contactId": "{{contactId}}",
- "amount": "10.00",
- "description": "Funding"
- }
RESPONSE
- {
- "id": "tra-baa8184e-3361-4e12-9ecd-4432eee0fc14",
- "accountId": "acc-63d656eb-fedc-4250-8111-48a5ff0faed9",
- "contactId": "con-ab8e4ddc-cf09-448d-aa19-f71527b8393c",
- "name": "Bright Might LLC",
- "accountNumber": "9990001149517700",
- "routingNumber": "",
- "address": {
- "addressType": "",
- "line1": "",
- "line2": "",
- "city": "",
- "state": "",
- "country": "",
- "postalCode": ""
- },
- "amount": "10.00",
- "status": "completed",
- "description": "Funding",
- "txnType": "debit",
- "transferType": "intrabank",
- "transferSubType": "originated",
- "createdAt": "2021-12-16T06:32:37Z",
- "modifiedAt": "2021-12-16T06:32:37Z",
- "transferredAt": "2021-12-16T06:32:37Z",
- "accountType": "",
- "iban": "",
- "valid": "",
- "parentTransferId": "",
- "reviewCode": "",
- "reviewMessage": "",
- "type": "",
- "metadata": null
- }