List all Wires Sent

‍Retrieves list of all wire transfers sent from an account
Send
List all Wires Sent
 last updated: 
November 30, 2023

ENDPOINT

  1. GET v1/send/wire?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-a356baee-6824-462d-97a4-5e15b6a6ef78",
  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": "wire",
  13.                 "line1": "123 Main St",
  14.                 "line2": "",
  15.                 "city": "New York",
  16.                 "state": "NY",
  17.                 "country": "US",
  18.                 "postalCode": "10001"
  19.             },
  20.             "amount": "14.00",
  21.             "status": "completed",
  22.             "description": "Downpayment",
  23.             "txnType": "debit",
  24.             "transferType": "domesticWire",
  25.             "transferSubType": "originated",
  26.             "createdAt": "2021-12-16T08:17:47Z",
  27.             "modifiedAt": "2021-12-16T08:17:47Z",
  28.             "transferredAt": "2021-12-16T08:17:47Z",
  29.             "accountType": "businessChecking",
  30.             "iban": "",
  31.             "valid": "",
  32.             "parentTransferId": "",
  33.             "reviewCode": "",
  34.             "reviewMessage": "",
  35.             "type": "",
  36.             "metadata": null
  37.         },
  38.         {
  39.             "id": "tra-970848b9-2250-48a5-a743-01c3eba43ffa",
  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": "wire",
  47.                 "line1": "123 Main St",
  48.                 "line2": "",
  49.                 "city": "New York",
  50.                 "state": "NY",
  51.                 "country": "US",
  52.                 "postalCode": "10001"
  53.             },
  54.             "amount": "250.00",
  55.             "status": "completed",
  56.             "description": "Downpayment",
  57.             "txnType": "debit",
  58.             "transferType": "domesticWire",
  59.             "transferSubType": "originated",
  60.             "createdAt": "2021-12-16T08:16:25Z",
  61.             "modifiedAt": "2021-12-16T08:16:29Z",
  62.             "transferredAt": "2021-12-16T08:16:25Z",
  63.             "accountType": "businessChecking",
  64.             "iban": "",
  65.             "valid": "",
  66.             "parentTransferId": "",
  67.             "reviewCode": "sendLimitExceeded",
  68.             "reviewMessage": "amount greater than allowed send limit",
  69.             "type": "",
  70.             "metadata": null
  71.         }
  72.     ]
  73. }