The page number of the result, starting by 0 (first page)
pageSize
integer >= 1
Default: 50
The number of items returned in a page.
sort
Array of strings
Defines the order in which results are returned (Knowledge Model–level GET).
The sortParamKm query parameter must be a comma-separated list of record fields and/or KPIs.
Any value used in sortParamKmmust also be included in the fields or kpis parameters.
If a value appears in sortParamKm but is not included in fields or kpis, the API cannot evaluate it and sorting will not be applied correctly.
If a non-existing field is provided, the request will return an error.
Sort direction is specified using optional prefixes:
+ for ascending order (ASC)
- for descending order (DESC)
No prefix defaults to ascending order (ASC)
Examples
sortParamKm=+record1_id.field1 (sorting in ascending order by a record field)
sortParamKm=-record1_id.field2,kpi1 (sorting in descending order by a record field and in ascending order by a KPI)
sortParamKm=record1_id.field1,-kpi2 (sorting in ascending order by a record field and in descending order by a KPI)
sortParamKm=-kpi1 (sorting in descending order by a KPI)