Create timesheet (Clock In)
Timesheets
POST clock in
Endpoint
POST /api/v1/timesheets
Parameters
| Name | Description |
|---|---|
| timesheet[job_id] required | Job ID |
Request
Route
POST /api/v1/timesheets
Headers
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNjQ2Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzYzNjI2NDA3LCJleHAiOjE3NjYyMTg0MDcsImp0aSI6IjFiNWYxYjBhLWZmMDMtNGUzOC1iYTgzLWRlYjMxMmJjODNiMCJ9.bbcsW2dS411oZI-Z3J3feYW4omlAGrbvTddkjmJrlTc
Host: example.org
Cookie:
Body
{
"timesheet": {
"job_id": 616
}
}
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/"e3337e99cae2845ea7c6957236c9af13"
cache-control: max-age=0, private, must-revalidate
x-request-id: efe001a1-6b6b-48f3-b134-86d3d620eeb9
x-runtime: 0.024744
content-length: 336
Body
{
"timesheet": {
"id": 206,
"currency": "GBP",
"date": "2025-11-20",
"job_title": "District Technology Facilitator",
"overtime_after": {
"seconds": 0.0
},
"overtime_rate": "0.0",
"payment_state": "pending",
"rate": "28.8",
"status": "in_progress",
"timelog": {
"id": 250,
"amend_status": "original",
"breaks": [
],
"end_at": null,
"start_at": "2025-11-20T08:13:27.057Z"
}
}
}