Send Wire Testing

Information on testing the Send Wire functionality
Send
Send Wire Testing
 last updated: 
November 30, 2023

You can test Send a Wire Transfer in Solid's TEST mode without moving real money. You will first need to Create a Contact to store the account and routing numbers to which you are going to send the transfer.

For Domestic Wire, contact will also need to have a valid bank routing number. Here are some samples:
- 121000248 (Wells Fargo)
- 026009593 (Bank of America)
- 021000021 (Chase)

For International Wire, contact will also need to have a valid SWIFT/BIC code. Here are some samples:
- HBUKGB4BXXX (HSBC UK BANK PLC)
- BNPAFRPHXXX (BNP PARIBAS)
- ICICINBBXXX (ICICI BANK LIMITED)

ENDPOINT

  1. POST /v1/send/wire

REQUEST

  1. {
  2.     "accountId": "{{accountId}}",
  3.     "contactId": "{{contactId}}",
  4.     "type": "domestic",
  5.     "amount": "14.00",
  6.     "description": "Maximum of 35 characters"
  7. }

Amount ≤ $16.96 will result in a successful wire transfer.

RESPONSE

  1. {
  2.     "id": "tra-a356baee-6824-462d-97a4-5e15b6a6ef78",
  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": "wire",
  10.         "line1": "123 Main St",
  11.         "line2": "",
  12.         "city": "New York",
  13.         "state": "NY",
  14.         "country": "US",
  15.         "postalCode": "10001"
  16.     },
  17.     "amount": "14.00",
  18.     "status": "completed",
  19.     "description": "Maximum of 35 characters",
  20.     "txnType": "debit",
  21.     "transferType": "domesticWire",
  22.     "transferSubType": "originated",
  23.     "createdAt": "2021-12-16T08:17:47Z",
  24.     "modifiedAt": "2021-12-16T08:17:47Z",
  25.     "transferredAt": "2021-12-16T08:17:47Z",
  26.     "accountType": "businessChecking",
  27.     "iban": "",
  28.     "valid": "",
  29.     "parentTransferId": "",
  30.     "reviewCode": "",
  31.     "reviewMessage": "",
  32.     "type": "",
  33.     "metadata": null
  34. }