curl --request GET \
--url https://{host}/api/v3/axisSections \
--header 'Authorization: <authorization>'
{
"data": {
"items": {
"id": 2,
"name": "<string>",
"url": "<string>",
"code": "<string>",
"multilingualName": "<string>",
"description": "<string>",
"ownerId": 123,
"startOn": "2023-11-07T05:31:56Z",
"endOn": "2023-11-07T05:31:56Z",
"active": true,
"axisId": 123,
"parentAxisSections": [
{
"id": 2,
"name": "<string>",
"url": "<string>",
"code": "<string>",
"multilingualName": "<string>",
"description": "<string>",
"ownerId": 123,
"startOn": "2023-11-07T05:31:56Z",
"endOn": "2023-11-07T05:31:56Z",
"active": true,
"axisId": 123
}
],
"childrenAxisSections": [
{
"id": 2,
"name": "<string>",
"url": "<string>",
"code": "<string>",
"multilingualName": "<string>",
"description": "<string>",
"ownerId": 123,
"startOn": "2023-11-07T05:31:56Z",
"endOn": "2023-11-07T05:31:56Z",
"active": true,
"axisId": 123
}
]
}
}
}
List all AxisSections satisfying query filters.
curl --request GET \
--url https://{host}/api/v3/axisSections \
--header 'Authorization: <authorization>'
{
"data": {
"items": {
"id": 2,
"name": "<string>",
"url": "<string>",
"code": "<string>",
"multilingualName": "<string>",
"description": "<string>",
"ownerId": 123,
"startOn": "2023-11-07T05:31:56Z",
"endOn": "2023-11-07T05:31:56Z",
"active": true,
"axisId": 123,
"parentAxisSections": [
{
"id": 2,
"name": "<string>",
"url": "<string>",
"code": "<string>",
"multilingualName": "<string>",
"description": "<string>",
"ownerId": 123,
"startOn": "2023-11-07T05:31:56Z",
"endOn": "2023-11-07T05:31:56Z",
"active": true,
"axisId": 123
}
],
"childrenAxisSections": [
{
"id": 2,
"name": "<string>",
"url": "<string>",
"code": "<string>",
"multilingualName": "<string>",
"description": "<string>",
"ownerId": 123,
"startOn": "2023-11-07T05:31:56Z",
"endOn": "2023-11-07T05:31:56Z",
"active": true,
"axisId": 123
}
]
}
}
}
API key. Value must be formatted like so: lucca application={api_key}
.
{offset},{limit}. Defaults to 0,1000.
"100,0"
Filter on the axis it belongs to.
Filter on the owner managing it.
Filter on active status.
OK
The response is of type object
.
Was this page helpful?