GET
/
api
/
external
/
v2
/
trial_balance
{
  "current_page": 1,
  "items": [
    {
      "credits": "2343.05",
      "debits": "45353.95",
      "formatted_number": "51200000",
      "label": "Capital souscrit - appelé, versé",
      "number": "512"
    },
    {
      "credits": "2343.05",
      "debits": "45353.95",
      "formatted_number": "51200000",
      "label": "Capital souscrit - appelé, versé",
      "number": "512"
    }
  ],
  "per_page": 40,
  "total_items": 12,
  "total_pages": 5
}

Query Parameters

period_start
string

(Required) The start of the period you want the trial balance for.

Example:

"2022-01-01"

period_end
string

(Required) The end of the period you want the trial balance for.

Example:

"2022-12-31"

is_auxiliary
string

Whether to include auxiliary accounts or not.

Example:

"true"

page
string

(Required) Items are paginated, this is the current page which will be returned. The page index is starting at 1.

Example:

"1"

per_page
string

(Required) The number of items returned per page.

Example:

"20"

Response

200
application/json

Returns a list of balances grouped by ledger accounts.

The response is of type object.