Timelogs

Appeal a timelog(amend)

PUT appeal timelog (amend)

Endpoint

PUT /api/v1/timesheets/:timesheet_id/timelogs/:id/appeal

Request

Route

PUT /api/v1/timesheets/203/timelogs/244/appeal

Headers

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

Body

{
  "timelog": {
    "comment": "I disagree with this timelog"
  }
}

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
content-type: application/json; charset=utf-8
vary: Accept, Origin
etag: W/"87ddc544887a71be88e9b787e1af2d4c"
cache-control: max-age=0, private, must-revalidate
x-request-id: 421176ba-24ab-4a1f-a645-d4ee81332cb1
x-runtime: 0.045594
content-length: 210

Body

{
  "timelog": {
    "id": 245,
    "amend_status": "appealed",
    "breaks": [

    ],
    "comment": "I disagree with this timelog",
    "duration": {
      "hours": 8,
      "minutes": 1
    },
    "end_at": "2025-11-20T16:13:26.742Z",
    "start_at": "2025-11-20T08:12:26.742Z"
  }
}