Aller au contenu

/api/v1/timers/start

POST
/api/v1/timers/start
curl --request POST \
--url https://example.com/api/v1/timers/start \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "projectId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "taskId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "description": "example", "tagIds": [ "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" ], "startedAt": "2026-04-15T12:00:00Z", "isBillable": true }'
Media type application/json
object
projectId
string format: uuid
nullable
taskId
string format: uuid
nullable
description
string
nullable
tagIds
Array<string>
nullable
startedAt
string format: date-time
nullable
isBillable
boolean
nullable
Example generated
{
"projectId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"taskId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"description": "example",
"tagIds": [
"2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"
],
"startedAt": "2026-04-15T12:00:00Z",
"isBillable": true
}

OK