For the complete documentation index, see llms.txt. This page is also available as Markdown.

Create Ledger

POST /v1/ledgers

Creates a new ledger.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer API Key

Body

Name
Type
Description

name

string

Name of the ledger.

description

string

Description of the ledger.

metadata

object

Additional application metadata.

Example Request

{
    "name": "Production Ledger",
    "description": "Primary accounting ledger",
    "metadata": {
        "environment": "production",
        "region": "eu-west-1"
    }
}

Response

Last updated