v1
latestOpenAPI 3.1.02026-07-242735131.1 MBTimesheets
Send back a timesheet for review or modification
Sends the given timesheet back to the employee for review or modification.
Scopes
| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage timeoffs (time_and_attendance) | - | Manage timesheets (timesheet:write) |
post/v1/timesheets/{timesheet_id}/send-back
Path parameters
timesheet_idstring required
Timesheet ID
Request body
Example request
{
"sent_back_reason": "Please review the timesheet."
}Response
Success
Example response
{
"data": {
"timesheet": {
"id": "663e0b79-c893-45ff-a1b2-f6dcabc098b5",
"sent_back": true,
"sent_back_reason": "Please review the timesheet.",
"status": "submitted"
}
}
}