v1

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

Create Account (Banking Connectivity)

post/banking/accounts

Headers

x-idempotency-keystring required

Unique identifier used in HTTP headers to ensure that a request is processed only once, even if it is retried due to network issues or timeouts. See authentication for details (UUID).

Request body

account_idstring required

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

onboarding_idstring required

The id of a successful onboarding obtained from Create Entity Onboarding. The onboarding must have status: SUCCEEDED.

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

The type of bank account to create.

currencystring required

The currency for the account (ISO 4217, 3 characters). Supported values depend on the provider region: USD (US), GBP (UK), AUD (Australia), EUR (EU).

Example request

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