Send a Wire Transfer

Sends a wire money transfer to a contact.
Send
Send a Wire Transfer
 last updated: 
December 21, 2023

Send a wire money transfer is done by passing the required account id, contact id, type, amount and description. Both domestic wire ("type": "domestic") and international wire ("type": "international") are support on the Solid Platform. Response is a transfer object.

International Wire requires detailed description and it must contain country specific details, purpose codes and the purpose of the wire. Information provided here ensures the timely review of the international wire at the ODFI.

Example of the Description while sending an international wire:
IFSC UTIB0000227 Indian Purpose Code 0802 Purpose Payment to Software Development Team in India 

Click here for more details on international wire requirements, including country specific requirements.

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 135 characters"
  7. }

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 500 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. }