List all ACHs Pulled

‍Retrieves list of all ACH pull money receive transfers in an account
Receive
List all ACHs Pulled
 last updated: 
November 30, 2023

ENDPOINT

  1. GET v1/receive/ach?accountId={{accountId}}

FILTERS

The table below describes various filters that can be passed as query parameters to narrow the response.

Filter Type Description
offset int start index (default = 0)
limit int number of records to return (default = 25, max = 100)
accountId string account ID
txnType enum credit, debit
modifiedStartTime string modified time in ISO UTC format (YYYY-MM-DDThh:mm:ssZ)
modifiedEndTime string modified time in ISO UTC format (YYYY-MM-DDThh:mm:ssZ)
externalId string Matches the externalId key if set in the object's metadata


RESPONSE

  1. {
  2.     "total": 2,
  3.     "data": [
  4.         {
  5.             "id": "tra-51d11ac4-deeb-4a76-b86a-007e0818d075",
  6.             "accountId": "acc-63d656eb-fedc-4250-8111-48a5ff0faed9",
  7.             "contactId": "con-ab8e4ddc-cf09-448d-aa19-f71527b8393c",
  8.             "name": "Bright Might LLC",
  9.             "accountNumber": "1098324502",
  10.             "routingNumber": "121042882",
  11.             "address": {
  12.                 "addressType": "",
  13.                 "line1": "",
  14.                 "line2": "",
  15.                 "city": "",
  16.                 "state": "",
  17.                 "country": "",
  18.                 "postalCode": ""
  19.             },
  20.             "amount": "6.00",
  21.             "status": "pending",
  22.             "description": "ACH Pull",
  23.             "txnType": "credit",
  24.             "transferType": "ach",
  25.             "transferSubType": "originated",
  26.             "createdAt": "2021-12-16T22:49:09Z",
  27.             "modifiedAt": "2021-12-16T22:54:11Z",
  28.             "transferredAt": "2021-12-16T22:49:09Z",
  29.             "accountType": "businessChecking",
  30.             "iban": "",
  31.             "valid": "true",
  32.             "parentTransferId": "",
  33.             "reviewCode": "",
  34.             "reviewMessage": "",
  35.             "type": "sameDay",
  36.             "metadata": null
  37.         },
  38.         {
  39.             "id": "tra-7f8c7aa7-e8ee-4a8d-a7f3-880338838699",
  40.             "accountId": "acc-63d656eb-fedc-4250-8111-48a5ff0faed9",
  41.             "contactId": "con-ab8e4ddc-cf09-448d-aa19-f71527b8393c",
  42.             "name": "Bright Might LLC",
  43.             "accountNumber": "1098324502",
  44.             "routingNumber": "121042882",
  45.             "address": {
  46.                 "addressType": "",
  47.                 "line1": "",
  48.                 "line2": "",
  49.                 "city": "",
  50.                 "state": "",
  51.                 "country": "",
  52.                 "postalCode": ""
  53.             },
  54.             "amount": "6.00",
  55.             "status": "pending",
  56.             "description": "ACH Pull",
  57.             "txnType": "credit",
  58.             "transferType": "ach",
  59.             "transferSubType": "originated",
  60.             "createdAt": "2021-12-16T22:47:07Z",
  61.             "modifiedAt": "2021-12-16T22:47:07Z",
  62.             "transferredAt": "2021-12-16T22:47:07Z",
  63.             "accountType": "businessChecking",
  64.             "iban": "",
  65.             "valid": "",
  66.             "parentTransferId": "",
  67.             "reviewCode": "",
  68.             "reviewMessage": "",
  69.             "type": "nextDay",
  70.             "metadata": null
  71.         }
  72.     ]
  73. }