Receive an ACH Pull

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

Receive an ACH pull money transfer is done by passing the required account id, contact id, amount and description. You can also pass the type for the ACH (sameDay, nextDay). Default is nextDay. Description is passed in the ACH addenda and is displayed in the transaction details view of the contact's account. Response is a transfer object.

ENDPOINT

  1. POST v1/receive/ach

REQUEST

  1. {
  2.     "accountId": "{{accountId}}",
  3.     "contactId": "{{contactId}}",
  4.     "amount": "6.00",
  5.     "description": "ACH Pull",
  6.     "type": "sameDay"
  7. }

RESPONSE

  1. {
  2.     "id": "tra-51d11ac4-deeb-4a76-b86a-007e0818d075",
  3.     "accountId": "acc-63d656eb-fedc-4250-8111-48a5ff0faed9",
  4.     "contactId": "con-ab8e4ddc-cf09-448d-aa19-f71527b8393c",
  5.     "name": "Bright Might LLC",
  6.     "accountNumber": "1098324502",
  7.     "routingNumber": "121042882",
  8.     "address": {
  9.         "addressType": "",
  10.         "line1": "",
  11.         "line2": "",
  12.         "city": "",
  13.         "state": "",
  14.         "country": "",
  15.         "postalCode": ""
  16.     },
  17.     "amount": "6.00",
  18.     "status": "pending",
  19.     "description": "ACH Pull",
  20.     "txnType": "credit",
  21.     "transferType": "ach",
  22.     "transferSubType": "originated",
  23.     "createdAt": "2021-12-16T22:49:09Z",
  24.     "modifiedAt": "2021-12-16T22:49:09Z",
  25.     "transferredAt": "2021-12-16T22:49:09Z",
  26.     "accountType": "businessChecking",
  27.     "iban": "",
  28.     "valid": "",
  29.     "parentTransferId": "",
  30.     "reviewCode": "",
  31.     "reviewMessage": "",
  32.     "type": "sameDay",
  33.     "metadata": null
  34. }