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
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
Get a leave by id
Retrieve a single Leave by its unique identifier.
curl --request GET \
--url https://{account}-{sandboxName}.sandbox.{server}.luccasoftware.com/api/v3/leaves/{leaveId}
{
"data": {
"id": "<string>",
"date": "2023-12-25",
"isAm": true,
"leaveAccountId": 123,
"leaveAccount": {
"id": 123,
"name": "<string>"
},
"leavePeriodId": 123,
"leavePeriod": {
"id": 123,
"ownerId": 123,
"isConfirmed": true,
"confirmationDate": null,
"attachmentId": null,
"leaves": [
{}
],
"logs": [
{
"id": 123,
"date": "2023-11-07T05:31:56Z",
"comment": "<string>",
"status": 0
}
]
},
"value": "<string>",
"creationDate": "2023-11-07T05:31:56Z",
"isActive": true,
"cancellationDate": null,
"cancellationUserId": null,
"comment": "<string>"
}
}
Path Parameters
Identifier of the leave.
Response
Unique identifier for the Leave
Date of the leave in ISO format yyyy-mm-dd
Has the value true
for morning or the value false
for afternoon
Unique identifier for the attached LeaveAccount
Unique identifier for the attached LeavePeriod
Unique identifier for the LeavePeriod
Unique identifier for the user
Has the value true
for approved LeavePeriod or the value false
for LeavePeriod pending approval
Time at which the LeavePeriod was approved
Unique identifier for the attached document
Unique identifier for the Leave
Date of the leave in ISO format yyyy-mm-dd
Has the value true
for morning or the value false
for afternoon
Unique identifier for the attached LeaveAccount
Unique identifier for the attached LeavePeriod
Unique identifier for the LeavePeriod
Unique identifier for the user
Has the value true
for approved LeavePeriod or the value false
for LeavePeriod pending approval
Time at which the LeavePeriod was approved
Unique identifier for the attached document
Leave duration in hours
Time at which the object was created
Has the value true
when the Leave exists (for pending or confirmed LeavePeriods), or the value false
when it has been deleted (for canceled or denied LeaveRequests).
Time at which the request was canceled
Unique identifier for the user who canceled the request
Comments
Leave duration in hours
Time at which the object was created
Has the value true
when the Leave exists (for pending or confirmed LeavePeriods), or the value false
when it has been deleted (for canceled or denied LeaveRequests).
Time at which the request was canceled
Unique identifier for the user who canceled the request
Comments
Was this page helpful?
curl --request GET \
--url https://{account}-{sandboxName}.sandbox.{server}.luccasoftware.com/api/v3/leaves/{leaveId}
{
"data": {
"id": "<string>",
"date": "2023-12-25",
"isAm": true,
"leaveAccountId": 123,
"leaveAccount": {
"id": 123,
"name": "<string>"
},
"leavePeriodId": 123,
"leavePeriod": {
"id": 123,
"ownerId": 123,
"isConfirmed": true,
"confirmationDate": null,
"attachmentId": null,
"leaves": [
{}
],
"logs": [
{
"id": 123,
"date": "2023-11-07T05:31:56Z",
"comment": "<string>",
"status": 0
}
]
},
"value": "<string>",
"creationDate": "2023-11-07T05:31:56Z",
"isActive": true,
"cancellationDate": null,
"cancellationUserId": null,
"comment": "<string>"
}
}