v1

latestOpenAPI 3.0.12026-07-144840447.2 KB
Exports

Export file of Analytical General Ledger

This endpoint allows you to create an Analytical General Ledger export. The generated export file is an xlsx file, using the in-line analytical mode by default.

ℹ️ This endpoint requires the following scope: exports:agl

post/api/external/firm/v1/companies/{company_id}/exports/analytical_general_ledgers

Path parameters

company_idinteger required
Example:1

Existing company identifier (id)

Request body

period_startstring date required

Start date of the period to export

period_endstring date required

End date of the period to export

mode'in_line' | 'in_column'

The mode of the export. The export can be in lines or in columns. If this parameter is not provided, it will use the default in_line mode.

Example request

{
  "period_start": "2023-08-30",
  "period_end": "2023-08-30"
}

Response

Returns the generated export status

idinteger required

ID of the export

statusstring required

State of the export

  • pending : The export is being generated
  • ready : The export is ready to be downloaded
  • error : An error occurred during the export generation
created_atstring date-time required
updated_atstring date-time required

Example response

{
  "id": 124,
  "status": "pending",
  "created_at": "2023-08-30T10:08:08.146343Z",
  "updated_at": "2023-08-30T10:08:08.146343Z"
}