Skip to main content
PUT
/
v2
/
counterparties
/
{id}
/
bank-accounts
Manage bank accounts (add/update/remove)
curl --request PUT \
  --url https://api.range.org/v2/counterparties/{id}/bank-accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "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"
    }
  ]
}
'
[
  {
    "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"
  }
]

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Path Parameters

id
string
required

Body

application/json
operations
object[]
required
Required array length: 1 - 50 elements

Response

200 - application/json
id
string
required
Example:

"ba-001"

currency
string
required
Example:

"USD"

bank_name
string
required
Example:

"Silicon Valley Bank"

account_name
string
Example:

"Vercel Inc"

iban
string
Example:

"************1234"

swift
string
Example:

"CHASUS33"

routing_number
string
Example:

"*****0248"

account_number
string
Example:

"****5678"

account_type
string
Example:

"checking"

sort_code
string
Example:

"****89"

Last modified on June 6, 2026