v1

latestOpenAPI 3.0.02026-07-26167441.9 MB
Accounts (Banking Connectivity)

Update Account (Banking Connectivity)

patch/banking/accounts/{account_id}

Path parameters

account_idstring required

The unique identifier of the account. Found on the Yuno dashboard (UUID, 36 chars).

Request body

account_idstring required

The unique identifier of the merchant's Yuno account (UUID, 36 characters).

account_type'CHECKING' | 'SAVINGS' | 'INVESTMENT'

The updated account type.

Example request

{
  "account_id": "550e8400-e29b-41d4-a716-446655440000",
  "account_type": "CHECKING"
}

Response

OK

idstring

The unique identifier of the Banking Connectivity account (prefixed acct_).

entity_idstring

The id of the entity associated with this account.

onboarding_idstring

The id of the onboarding used to create this account.

account_idstring

The merchant's Yuno account identifier.

account_type'CHECKING' | 'SAVINGS' | 'INVESTMENT'
status'ACTIVE' | 'PENDING' | 'INACTIVE'
account_numberstring
routing_numberstring nullable
ibanstring nullable
currencystring
supports_book_transfersboolean
created_atstring
updated_atstring

Example response

{
  "id": "acct_aa0e8400-e29b-41d4-a716-446655440000",
  "entity_id": "ent_660e8400-e29b-41d4-a716-446655440000",
  "onboarding_id": "onb_990e8400-e29b-41d4-a716-446655440000",
  "account_id": "550e8400-e29b-41d4-a716-446655440000",
  "provider": {
    "account_id": "col_bank_account_789"
  },
  "account_type": "CHECKING",
  "status": "ACTIVE",
  "account_number": "1234567890",
  "routing_number": "123456789",
  "currency": "USD",
  "balance": {
    "available": 5000,
    "current": 5000
  },
  "account_details": {
    "account_name": "John Doe - Primary Checking"
  },
  "payment_rails": {
    "incoming": [
      "ACH",
      "WIRE"
    ],
    "outgoing": [
      "ACH",
      "WIRE"
    ]
  },
  "supports_book_transfers": true,
  "created_at": "2026-02-01T10:10:00Z",
  "updated_at": "2026-02-01T12:00:00Z"
}