Create account
Creates a new account with holder information and generates an IBAN.
Idempotent Endpoint
This endpoint supports idempotency to prevent duplicate account creation.How to Use
- Include an
Idempotency-Keyheader with a unique value (UUID recommended) - The API returns the existing account when you reuse the same key
- Retry requests safely without creating duplicates
Overview
This endpoint creates a new account, either PRIVATE or LEGAL. It validates the provided information, generates an IBAN, and creates the account with an OPEN status. All accounts require the account holder’s name, country code, and bank details for IBAN generation, while legal accounts also require a legal entity ID. You can optionally provide a unique clientAccountId to link the account to your internal systems.Headers
Unique string (often a UUID) used to safely retry requests
"8e7aafb1-92f2-4681-a068-a4819c03c0b6"
Body
Request to create a new account
Type of account (PRIVATE or LEGAL)
PRIVATE, LEGAL "PRIVATE"
Name of the account holder or company name if legal
1"Jane Doe"
Client's internal account ID (must be unique)
"001"
Optional alternative names or identifiers to improve matching (e.g., acronyms, short forms like "IBM" for "International Business Machines")
["HGRP"]Organisation identification details (for LEGAL accounts)
Account IBAN
ISO alpha-2 country code
^[A-Z]{2}$"LT"
Bank code
"70440"
Account code
"1869"
Response
Account created successfully
Account information response
Internal account identifier
1
Client's internal account ID
"acc_001"
International Bank Account Number
"LT121000011111111111"
Type of account
PRIVATE, LEGAL "PRIVATE"
Name of the account holder
"Jane Doe"
Account status
OPEN, CLOSED "OPEN"
Account creation timestamp
"2025-09-10T13:43:40.758Z"
Last update timestamp
"2025-09-10T13:55:40.758Z"
International Bank Account Generation Metadata
Optional alternative names or identifiers to improve matching (e.g., acronyms, short forms like "IBM" for "International Business Machines")
["HGRP"]Organisation identification details (for LEGAL accounts)