HTTP Operation Type Object DTO Why-DTOs?
(Query) accountingBalanceSheet AccountingBalanceSheetGLDtoInput

Description

The AccountingBalanceSheet service provides a balance sheet report for accounting.

  • Bilan : Générez un aperçu des actifs et passifs de votre entreprise pour une période déterminée.
  • Balance de situación : Consulta el estado de los activos y pasivos de tu empresa en un periodo determinado.
  • Bilanz : Zeigen Sie Ihre Vermögenswerte und Verbindlichkeiten für einen beliebigen Zeitraum an.
  • Balanço : Gere um resumo dos seus ativos e passivos para um determinado período contabilístico.

This service generates a structured view of assets and liabilities, allowing a clear snapshot of the financial position over a specified period.

img

Functionality
Input Parameters
Response

The service returns an array of AccountingBalanceSheetOutputGLDto objects, each representing a line of the balance sheet:

Tips and Tricks

This query returns the full balance sheet structure in a single call.
Pagination is not required, as the result is a complete ordered array representing the balance sheet layout.

Key Value
Authorization Bearer Current access Token How to find?
X-TenantId Current tenant id Why deprecated ?
X-OrganizationId Current organization Id How to find?
x-api-key Primary or secondary subscription key of your app How to find?
GraphQL Query
query ($input: AccountingBalanceSheetGLDtoInput!) {
  accountingBalanceSheet(input: $input) {
    code
    description
    lineType
    order
    multiColumn
    amountColumn1
    amountColumn2
    amountTotal
  }
}
GraphQL Variables
{
  "input": {
    "startDate": "2026-01-01",
    "endDate": "2026-12-31",
    "onlyLinesWithAmount": false,
    "showTemporaryCarryForward": false
  }
}
Example Response
{
  "data": {
    "accountingBalanceSheet": [
      {
        "amountColumn1": 0,
        "amountColumn2": 0,
        "amountTotal": 0,
        "multiColumn": false,
        "code": "A0",
        "description": "ACTIF",
        "lineType": "ACCOUNT_CALCULATION",
        "order": 1
      },
      {
        "amountColumn1": 0,
        "amountColumn2": 0,
        "amountTotal": 0,
        "multiColumn": false,
        "code": "A000",
        "description": "   CAPITAL SOUSCRIT NON-APPELÉ (I)",
        "lineType": "RESULT_CALCULATION",
        "order": 2
      }
    ]
  }
}

accountingBalanceSheet Input parameters

Fields Type Description
startDate DateTime Start date of the report
endDate DateTime End date of the report
onlyLinesWithAmount Boolean Return only lines with amounts
showTemporaryCarryForward Boolean Include temporary carryforward lines
Info
  • onlyLinesWithAmount:

    • true returns only lines where at least one amount is non-zero
    • false returns the full balance sheet structure

accountingBalanceSheet Response

Fields Type Description Length
code String Balance sheet line code 10
description String Description of the balance sheet line 255
lineType
  • UNDEFINED
  • ACCOUNT_CALCULATION
  • LABEL
  • LINE_CALCULATION
  • RESULT_CALCULATION
  • TITLE
Type of line (title, section, detail, total)  
order Int Display order of the line  
multiColumn Boolean Indicates if the line uses multiple amount columns  
amountColumn1 Decimal Amount for the first column  
amountColumn2 Decimal Amount for the second column  
amountTotal Decimal Total amount of the line  
Info
  • multiColumn:

    • true indicates the balance sheet line is split across multiple columns
    • false indicates a single total amount