# Time Entries

This object allows you to manage Kantata OX time entries, depending on your permissions.
Creating and updating time entries allows you to include time when invoicing clients.

 - [GET /time_entries](https://developer.kantata.com/kantata/specification/time-entries/get%20time%20entries.md): Returns all time entries visible to the requesting user, unless filter parameters have been applied. This endpoint returns structured Time Entry objects. As with all Kantata OX API endpoints, the retu
 - [POST /time_entries](https://developer.kantata.com/kantata/specification/time-entries/create%20time%20entry.md): Creates time entries for a user. **Bulk Create** This endpoint supports bulk creating up to 100 objects. In the request body, set the top-level key to its plural form and place the objects in an array
 - [DELETE /time_entries](https://developer.kantata.com/kantata/specification/time-entries/delete%20time%20entries.md): The IDs of the time 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 entries cannot be d
 - [GET /time_entries/{id}](https://developer.kantata.com/kantata/specification/time-entries/get%20time%20entry.md): This endpoint returns structured Time Entry objects. As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the `results` array and will be indexed by ID in the
 - [PUT /time_entries/{id}](https://developer.kantata.com/kantata/specification/time-entries/update%20time%20entry.md): This endpoint returns structured Time Entry objects. As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the `results` array and will be indexed by ID in the
 - [DELETE /time_entries/{id}](https://developer.kantata.com/kantata/specification/time-entries/delete%20time%20entry.md): Deletes the time entry if it is deletable. A time entry cannot be destroyed if: - the time is locked before a certain date, - the time has been invoiced, or - a time adjustment is linked with it. The
