# Time Off Entries

Time Off Entries represent the time and dates that a user has requested off from work, such as PTO or vacation days.

 - [GET /time_off_entries](https://developer.kantata.com/kantata/specification/time-off-entries/get%20time%20off%20entries.md): Returns time off entries which are visible to the user. Items are visible to a user if they are on the same account. This endpoint returns structured Time Off Entry objects. As with all Kantata OX API
 - [POST /time_off_entries](https://developer.kantata.com/kantata/specification/time-off-entries/create%20time%20off%20entry.md): Creates a single or multiple time off entries for a user. Multiple time off entries can be created for the same day, in a single request or separate requests. Entries for the same day are combined int
 - [DELETE /time_off_entries](https://developer.kantata.com/kantata/specification/time-off-entries/delete%20time%20off%20entries.md): The IDs of the time off entries to delete can be provided in the `ids` query parameter or via the request body. Request body example: ```{ "ids": "1,2,3" }``` If any specified time off entries can
 - [PUT /time_off_entries/{id}](https://developer.kantata.com/kantata/specification/time-off-entries/update%20time%20off%20entry.md): Update a Time Off Entry. Only the hours and external references can be modified. Time off hours cannot exceed the user's possible workday hours for that day. This endpoint returns structured Time Off
 - [DELETE /time_off_entries/{id}](https://developer.kantata.com/kantata/specification/time-off-entries/delete%20time%20off%20entry.md): This will delete the time off entry. The response will contain no content and an HTTP 204 status code if the request was successful, or a [standard Kantata OX error message](#section/Errors) explainin
