curl --request GET \
--url https://cloud.kaneo.app/api/time-entry/{id} \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"taskId": "<string>",
"userId": "<string>",
"description": "<string>",
"startTime": "2023-11-07T05:31:56Z",
"duration": 123,
"createdAt": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z"
}Get a specific time entry by ID
curl --request GET \
--url https://cloud.kaneo.app/api/time-entry/{id} \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"taskId": "<string>",
"userId": "<string>",
"description": "<string>",
"startTime": "2023-11-07T05:31:56Z",
"duration": 123,
"createdAt": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z"
}Bearer token authentication
Was this page helpful?