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.eyJzdWIiOiIxNjU5Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzUzMjY2MjIxLCJleHAiOjE3NTU4NTgyMjEsImp0aSI6IjVkMGQzMzUyLWM2YmMtNDRlYi1iNTRjLWQ2NDMzMjEzMzBhYyJ9.5qLbcRKlDfTNzs1opj5UocFVE5-z2u1tLqUL_APNggg
Host: example.org
Cookie: 

Body

{
  "timesheet": {
    "timesheet_ids": [
      197,
      198,
      199
    ]
  }
}

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/"a094af813ec3de2da7a1dd4144139e35"
cache-control: max-age=0, private, must-revalidate
x-request-id: 1ff90616-7cd2-4f5c-b4af-81373d50f353
x-runtime: 0.106161
content-length: 820

Body

{
  "timesheets": [
    {
      "id": 197,
      "date": "2025-07-23",
      "job_title": "Principal Technician",
      "payment_state": "pending",
      "status": "approved",
      "timelog": {
        "id": 241,
        "amend_status": "approved",
        "breaks": [

        ],
        "duration": {
          "hours": 2
        },
        "end_at": "2025-07-23T12:23:41.256Z",
        "start_at": "2025-07-23T10:23:41.250Z"
      }
    },
    {
      "id": 198,
      "date": "2025-07-23",
      "job_title": "Principal Technician",
      "payment_state": "pending",
      "status": "approved",
      "timelog": {
        "id": 242,
        "amend_status": "approved",
        "breaks": [

        ],
        "duration": {
          "hours": 2
        },
        "end_at": "2025-07-23T12:23:41.266Z",
        "start_at": "2025-07-23T10:23:41.260Z"
      }
    },
    {
      "id": 199,
      "date": "2025-07-23",
      "job_title": "Principal Technician",
      "payment_state": "pending",
      "status": "approved",
      "timelog": {
        "id": 243,
        "amend_status": "approved",
        "breaks": [

        ],
        "duration": {
          "hours": 2
        },
        "end_at": "2025-07-23T12:23:41.279Z",
        "start_at": "2025-07-23T10:23:41.270Z"
      }
    }
  ]
}