v1

latestOpenAPI 3.1.02026-07-242735131.1 MB
Timesheets

Send back a timesheet for review or modification

Sends the given timesheet back to the employee for review or modification.

Scopes

CategoryRead only ScopeWrite 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

sent_back_reasonstring required

A required explanation of why the timesheet is being sent back. This will be visible to the employee.

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"
    }
  }
}