Workcycle-exceptions
Retrieve a WorkCycleException.
Documentation
Organization Structure API
- Axis-sections
- Departments
- Legal-Units
- Establishments
Core HR API
- Employees Directory
- Guides
Cleemy Expenses API
- Expense-temp-items
- Expense-claims
- Expense-claim-items
- Exports
- Guides
Cleemy Invoices API
- Guides
Timmi Absences API
- Leaves
- Leave-requests
- Sick-leaves
- Imports
- Guides
Timmi Office API
- User-locations
- Work-locations
Timmi Project API
- Clients
- Projects
- Project services
- Organizations
- Financials
Timmi Settings API
- UserDates
- Workcycle-exceptions
- Working-time-arrangement
Timmi Timesheet API
- Time-entries
- Timesheets
- Reports
- Guides
Pagga Mealvouchers API
- Statutory
- Computation
Pagga Remuneration API
- Fixed-natures
- Fixed-items
- Variable-natures
- Variable-items
Poplee Training API
- Training-demands
- Realized-trainings
Workcycle-exceptions
Retrieve a WorkCycleException.
Retrieve a single WorkCycleException by its ID.
GET
/
api
/
v3
/
workcycleExceptions
/
{id}
curl --request GET \
--url https://{host}/api/v3/workcycleExceptions/{id} \
--header 'Authorization: <authorization>'
{
"data": {
"id": 2,
"name": "<string>",
"url": "<string>",
"ownerId": 2,
"owner": {
"id": 2,
"name": "<string>",
"url": "<string>",
"firstName": "<string>",
"lastName": "<string>"
},
"isAm": true,
"unit": "day",
"startsAt": "2023-11-07T05:31:56Z",
"endsAt": "2023-11-07T05:31:56Z",
"durationInMinutes": 1,
"duration": "<string>",
"authorId": 1,
"createdAt": "2023-11-07T05:31:56Z",
"modifierId": 1,
"modifiedAt": "2023-11-07T05:31:56Z",
"deletedById": 1,
"deletedAt": "2023-11-07T05:31:56Z"
}
}
Headers
API key. Value must be formatted like so: lucca application={api_key}
.
Path Parameters
ID of the workcycleException
Required range:
x >= 1
Response
200
application/json
OK
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://{host}/api/v3/workcycleExceptions/{id} \
--header 'Authorization: <authorization>'
{
"data": {
"id": 2,
"name": "<string>",
"url": "<string>",
"ownerId": 2,
"owner": {
"id": 2,
"name": "<string>",
"url": "<string>",
"firstName": "<string>",
"lastName": "<string>"
},
"isAm": true,
"unit": "day",
"startsAt": "2023-11-07T05:31:56Z",
"endsAt": "2023-11-07T05:31:56Z",
"durationInMinutes": 1,
"duration": "<string>",
"authorId": 1,
"createdAt": "2023-11-07T05:31:56Z",
"modifierId": 1,
"modifiedAt": "2023-11-07T05:31:56Z",
"deletedById": 1,
"deletedAt": "2023-11-07T05:31:56Z"
}
}