Timesheets

Approve timesheets

PUT approve

Endpoint

PUT /api/v1/timesheets/approve

Parameters

Name Description
job_driver[timesheet_ids] required Array of timesheet ids

Request

Route

PUT /api/v1/timesheets/approve

Headers

Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNjUyIiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzQ4NTE2NTM0LCJleHAiOjE3NTExMDg1MzQsImp0aSI6ImI3MDJhNmRlLTljNGYtNDMzMS05MzZmLWE5MmY5MDFlNDE0ZSJ9.kskp3TBjVyGSJSlEgkZ01DJJ1hRdTD_j2juhhQxYYYU
Host: example.org
Cookie: 

Body

{
  "timesheet": {
    "timesheet_ids": [
      194,
      195,
      196
    ]
  }
}

Response

Simulated Response

Status

200

Headers

x-frame-options: SAMEORIGIN
x-xss-protection: 0
x-content-type-options: nosniff
x-permitted-cross-domain-policies: none
referrer-policy: strict-origin-when-cross-origin
per-page: 20
total: 3
content-type: application/json; charset=utf-8
vary: Accept, Origin
etag: W/"86a3579d59dd7cab328046849c30ca22"
cache-control: max-age=0, private, must-revalidate
x-request-id: 5af4c414-05a8-4538-9310-ec1641c8b187
x-runtime: 0.083718
content-length: 820

Body

{
  "timesheets": [
    {
      "id": 194,
      "date": "2025-05-29",
      "job_title": "Education Consultant",
      "payment_state": "pending",
      "status": "approved",
      "timelog": {
        "id": 236,
        "amend_status": "approved",
        "breaks": [

        ],
        "duration": {
          "hours": 2
        },
        "end_at": "2025-05-29T13:02:14.672Z",
        "start_at": "2025-05-29T11:02:14.669Z"
      }
    },
    {
      "id": 195,
      "date": "2025-05-29",
      "job_title": "Education Consultant",
      "payment_state": "pending",
      "status": "approved",
      "timelog": {
        "id": 235,
        "amend_status": "approved",
        "breaks": [

        ],
        "duration": {
          "hours": 2
        },
        "end_at": "2025-05-29T13:02:14.679Z",
        "start_at": "2025-05-29T11:02:14.675Z"
      }
    },
    {
      "id": 196,
      "date": "2025-05-29",
      "job_title": "Education Consultant",
      "payment_state": "pending",
      "status": "approved",
      "timelog": {
        "id": 234,
        "amend_status": "approved",
        "breaks": [

        ],
        "duration": {
          "hours": 2
        },
        "end_at": "2025-05-29T13:02:14.686Z",
        "start_at": "2025-05-29T11:02:14.682Z"
      }
    }
  ]
}