v1
latestOpenAPI 3.1.02026-07-26549156879.0 KBFinance > Account
Creates an Account
Create a ledger account for the company legal_entity. To avoid duplicates use the external_id field to set the ID of the ledger account in the external system.
post/api/2026-07-01/resources/finance/accounts
Request body
Example request
{
"name": "Bank Account",
"number": "1000",
"type": "bank",
"currency": "EUR",
"legal_entity_id": "11",
"external_id": "ext_123"
}Response
CREATED
Example response
{
"id": "1",
"name": "Bank Account",
"legal_entity_id": "11",
"number": "1000",
"type": "bank",
"external_id": "ext_123",
"updated_at": "2021-01-01T00:00:00.000Z"
}