v1
latestOpenAPI 3.0.12026-07-2464217456.8 KBTime-Offs
Create a time-off
post/1.0/time-offs
Query parameters
includeFieldsstring[]
This query parameter allows you to specify which fields should be returned in the response body by selecting from the drop down. To get the relevant fields, use comma separated values. If the field is left blank, the default properties are returned.
includeAllFieldsboolean
Example:true
This query parameter allows you to specify if all the fields should be returned in the response body. If the field is left blank, the default properties are returned.
Request body
Example request
{
"timeOffId": 201,
"user": {
"emailId": "john.doe@rocketlane.com",
"userId": 201,
"firstName": "John",
"lastName": "Doe"
},
"note": "Sick leave.",
"startDate": "2023-03-28",
"endDate": "2023-03-28",
"type": "50",
"notifyUsers": {
"others": [
{
"userId": 201,
"emailId": "john.doe@rocketlane.com"
}
]
},
"durationInMinutes": 50
}Response
The resource was successfully created in the database.
Example response
{
"timeOffId": 201,
"user": {
"emailId": "john.doe@rocketlane.com",
"userId": 201,
"firstName": "John",
"lastName": "Doe"
},
"note": "Sick leave.",
"startDate": "2023-03-28",
"endDate": "2023-03-28",
"durationInMinutes": 50,
"type": "FULL_DAY",
"notifyUsers": {
"others": [
{
"emailId": "john.doe@rocketlane.com",
"userId": 201,
"firstName": "John",
"lastName": "Doe"
}
]
},
"createdAt": 1681319726000,
"createdBy": {
"emailId": "john.doe@rocketlane.com",
"userId": 201,
"firstName": "John",
"lastName": "Doe"
}
}