Documentation
Organization Structure API
Core HR API
- Employees Directory
- Guides
Expenses API
- Expense-temp-items
- Expense-claims
- Expense-claim-items
- Exports
- Guides
Invoices API
- Guides
Absences API
- Leaves
- Leave-requests
- Sick-leaves
- Imports
- Guides
Office API
- User-locations
- Work-locations
Project API
- Clients
- Projects
- Project services
- Organizations
- Financials
Time Settings API
- UserDates
- Workcycle-exceptions
- Working-time-arrangement
Timesheet API
- Time-entries
- Timesheets
- Reports
- Guides
Mealvouchers API
- Statutory
- Computation
Compensation API
- Fixed-natures
- Fixed-items
- Variable-natures
- Variable-items
Training API
- Training-demands
- Realized-trainings
Axis-sections
List AxisSections
List all AxisSections satisfying query filters.
GET
/
api
/
v3
/
axisSections
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
}
]
}
}
}
Headers
API key. Value must be formatted like so: lucca application={api_key}
.
Query Parameters
{offset},{limit}. Defaults to 0,1000.
Example:
"100,0"
Filter on the axis it belongs to.
Filter on the owner managing it.
Filter on active status.
Response
200
application/json
OK
The response is of type object
.
Was this page helpful?
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
}
]
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.