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.eyJzdWIiOiIxNjg1Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzYzNjI2NDA4LCJleHAiOjE3NjYyMTg0MDgsImp0aSI6IjVlMjBmNTVjLWI5OWEtNDgzZi1iMjgxLTRhZTdmN2ZhNDQ4YSJ9.4EiLpRg5jEElJHPkNYlpyIdBt68kGyp-h6t81douiHI
Host: example.org
Cookie: 

Body

{
  "timesheet": {
    "timesheet_ids": [
      215,
      216,
      217
    ]
  }
}

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/"1baa9de06bdc7dbb3da3da7850a377df"
cache-control: max-age=0, private, must-revalidate
x-request-id: f5fc87ea-9dcd-4005-bb4a-31124fcfee01
x-runtime: 0.078020
content-length: 859

Body

{
  "timesheets": [
    {
      "id": 215,
      "currency": "GBP",
      "date": "2025-11-20",
      "job_title": "Design Architect",
      "payment_state": "pending",
      "status": "approved",
      "timelog": {
        "id": 262,
        "amend_status": "approved",
        "breaks": [

        ],
        "duration": {
          "hours": 2
        },
        "end_at": "2025-11-20T10:13:28.569Z",
        "start_at": "2025-11-20T08:13:28.565Z"
      }
    },
    {
      "id": 216,
      "currency": "GBP",
      "date": "2025-11-20",
      "job_title": "Design Architect",
      "payment_state": "pending",
      "status": "approved",
      "timelog": {
        "id": 263,
        "amend_status": "approved",
        "breaks": [

        ],
        "duration": {
          "hours": 2
        },
        "end_at": "2025-11-20T10:13:28.578Z",
        "start_at": "2025-11-20T08:13:28.571Z"
      }
    },
    {
      "id": 217,
      "currency": "GBP",
      "date": "2025-11-20",
      "job_title": "Design Architect",
      "payment_state": "pending",
      "status": "approved",
      "timelog": {
        "id": 264,
        "amend_status": "approved",
        "breaks": [

        ],
        "duration": {
          "hours": 2
        },
        "end_at": "2025-11-20T10:13:28.585Z",
        "start_at": "2025-11-20T08:13:28.581Z"
      }
    }
  ]
}