Authorizations
Cookie-based authentication
Query Parameters
The format of the export
xlsx
, csv
, json
The ID of the export configuration to use. This corresponds to the index in the
customDataExports
settings array. If null, the default export as configured
in the customDataExportSelected
setting will be used.
Dynamic parameters that replace placeholders in the SQL query.
Any parameter defined in the export configuration can be overridden via GET parameters. Parameter names should match the placeholders in the SQL query (without the curly braces).
Parameter Resolution Logic:
- If provided as GET parameter → use that value
- If not provided but has default value → use default value
- If not provided and no default → throw error (parameter required)
Common Parameter Examples:
limit=100
→ replaces{limit}
placeholderoffset=0
→ replaces{offset}
placeholdercustomerId=12345
→ replaces{customerId}
placeholderstartDate=2024-01-01
→ replaces{startDate}
placeholderendDate=2024-12-31
→ replaces{endDate}
placeholderstatus=active
→ replaces{status}
placeholderdepartmentId=5
→ replaces{departmentId}
placeholder
Response
Successful operation
The response is of type object[]
.