v1

latestOpenAPI 3.0.02026-07-26117198177.4 KB
Counterparties

Manage bank accounts (add/update/remove)

put/v2/counterparties/{id}/bank-accounts

Path parameters

idstring required

Request body

Example request

{
  "operations": [
    {
      "action": "add",
      "id": "ba-uuid-001",
      "currency": "USD",
      "bank_name": "Chase",
      "account_name": "Vercel Inc",
      "iban": "DE89370400440532013000",
      "swift": "DEUTDEFF",
      "routing_number": "021000021",
      "account_number": "12345678",
      "account_type": "checking",
      "sort_code": "60-16-13"
    }
  ]
}

Response

idstring required
currencystring required
bank_namestring required
account_namestring
ibanstring
swiftstring
routing_numberstring
account_numberstring
account_typestring
sort_codestring

Example response

[
  {
    "id": "ba-001",
    "currency": "USD",
    "bank_name": "Silicon Valley Bank",
    "account_name": "Vercel Inc",
    "iban": "************1234",
    "swift": "CHASUS33",
    "routing_number": "*****0248",
    "account_number": "****5678",
    "account_type": "checking",
    "sort_code": "****89"
  }
]