Timesheets

List timesheets OR amends

GET timesheets

Endpoint

GET /api/v1/timesheets

Parameters

Name Description In
by_name Filter by name
from_date Filter by date
to_date Filter by date
by_job Filter by job ID
by_kind required Filter by kind ["timesheet", "amended", "deleted", "in_progress"]

Request

Route

GET /api/v1/timesheets?by_kind=timesheet

Headers

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

Query Parameters

by_kind=timesheet

Body

{
}

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: 1
content-type: application/json; charset=utf-8
vary: Accept, Origin
etag: W/"58713f2e83a1d9d84ac80c1931c53eed"
cache-control: max-age=0, private, must-revalidate
x-request-id: b61e4a80-f169-4175-8917-8df07285d2e4
x-runtime: 0.042629
content-length: 288

Body

{
  "timesheets": [
    {
      "id": 204,
      "currency": "GBP",
      "date": "2025-10-20",
      "job_number": 27510587,
      "job_title": "Future Strategist",
      "payment_state": "pending",
      "status": "pending",
      "timelog": {
        "id": 252,
        "amend_status": "original",
        "breaks": [

        ],
        "end_at": null,
        "start_at": "2025-10-20T08:54:33.240Z"
      },
      "total": "0.0"
    }
  ]
}