List all Transactions

Retrieves list of all transactions that belong to an account or other ID
Transactions
List all Transactions
 last updated: 
November 30, 2023

ENDPOINT

  1. GET /v1/account/:id/transaction/

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)
orderBy enum sort the list of transactions by createdAt or txtDate, for example:
?orderBy=createdAt → order by createdAt ascending order
?orderBy=-createdAt → order by createdAt descending order (default if not passed)
?orderBy=txnDate → order by txnDate ascending order
?orderBy=-txnDate → order by txnDate descending order (default if not passed)
export enum export options include: pdf, csv, json (default)
id string transaction ID
txnType enum credit, debit
status enum transaction status code
transferId string transfer ID
accountId string account ID
cardId string card ID
walletId string crypto wallet ID
contactId string contact ID
personId string person ID
businessId string business ID
parentTransactionId string parent transaction ID
transferType enum intrabank, ach, card, domesticWire, internationalWire, debitCard, solidCard, physicalCheck, buy, sell, send, receive
subType enum see Transaction Subtype Matrix
minAmount num minimum amount (up two decimal places)
maxAmount num maximum amount (up two decimal places)
startTime string created time in ISO UTC format (YYYY-MM-DDThh:mm:ssZ)
endTime string created time in ISO UTC format (YYYY-MM-DDThh:mm:ssZ)
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)
metadata.query string searches data in the metadata sub-object


RESPONSE

  1. {
  2.   "total": 2,
  3.   "data": [
  4.     {
  5.       "id": "txn-d6d16c4d-a6f3-49e3-a0eb-f860994c4be7",
  6.       "txnType": "credit",
  7.       "title": "Received from Bright Might LLC",
  8.       "amount": "3.00",
  9.       "transferType": "intrabank",
  10.       "subType": "originated",
  11.       "description": "Intrabank Pull",
  12.       "accountId": "acc-63d656eb-fedc-4250-8111-48a5ff0faed9",
  13.       "businessId": "bus-0fc3d3cb-f2bf-407b-8377-77acc57f5ea6",
  14.       "programId": "prg-b9f17601-4717-460e-bda5-9598f6f6db28",
  15.       "personId": "per-3ebfa3d2-5d36-411d-984a-9e3a328011c5",
  16.       "balance": "439.00",
  17.       "intrabank": {
  18.         "transferId": "tra-b0cbdf7e-d5be-4f1e-85a3-9da0873b95da",
  19.         "contactId": "con-ab8e4ddc-cf09-448d-aa19-f71527b8393c",
  20.         "name": "Bright Might LLC",
  21.         "routingNumber": "084106768"
  22.       },
  23.       "ach": null,
  24.       "card": null,
  25.       "createdAt": "2021-12-16T21:08:56Z",
  26.       "txnDate": "2021-12-16T21:08:56Z",
  27.       "status": "settled",
  28.       "domesticWire": null,
  29.       "internationalWire": null,
  30.       "digitalCheck": null,
  31.       "physicalCheck": null,
  32.       "parentTxnId": "",
  33.       "reviewCode": "",
  34.       "reviewMessage": "",
  35.       "debitCard": null,
  36.       "solidCard": null,
  37.       "parentTransferId": ""
  38.     },
  39.     {
  40.       "id": "txn-dd6b12d6-afb0-417d-b369-7f0e6c5097e7",
  41.       "txnType": "debit",
  42.       "title": "Paid to Bright Might LLC",
  43.       "amount": "-25.00",
  44.       "transferType": "intrabank",
  45.       "subType": "originated",
  46.       "description": "Fund",
  47.       "accountId": "acc-63d656eb-fedc-4250-8111-48a5ff0faed9",
  48.       "businessId": "bus-0fc3d3cb-f2bf-407b-8377-77acc57f5ea6",
  49.       "programId": "prg-b9f17601-4717-460e-bda5-9598f6f6db28",
  50.       "personId": "per-3ebfa3d2-5d36-411d-984a-9e3a328011c5",
  51.       "balance": "436.00",
  52.       "intrabank": {
  53.         "transferId": "tra-2ab6f020-f8fb-4b73-bbd3-5aac957cc09a",
  54.         "contactId": "con-ab8e4ddc-cf09-448d-aa19-f71527b8393c",
  55.         "name": "Bright Might LLC",
  56.         "routingNumber": "084106768"
  57.       },
  58.       "ach": null,
  59.       "card": null,
  60.       "createdAt": "2021-12-16T20:56:06Z",
  61.       "txnDate": "2021-12-16T20:56:06Z",
  62.       "status": "settled",
  63.       "domesticWire": null,
  64.       "internationalWire": null,
  65.       "digitalCheck": null,
  66.       "physicalCheck": null,
  67.       "parentTxnId": "",
  68.       "reviewCode": "",
  69.       "reviewMessage": "",
  70.       "debitCard": null,
  71.       "solidCard": null,
  72.       "parentTransferId": ""
  73.     }
  74.   ]
  75. }