delete https://api.timeero.app/api/public/timesheets
Endpoint: DELETE /timesheets
Description: Delete timesheets by their ids.
Request Body:
Parameter | Type | Description |
---|---|---|
ids required | list(integer) | ids of the timesheets to be deleted. eg. [1,2] or [1] |
user_id required | integer | id of the admin deleting the timesheet(s) |
Request Body Sample:
{
"ids":[1,2],
"user_id": 1
}