time-entries / #66
- userId
-
Guy Christiansen @guy.christiansen40
- taskId
- tasks/222
- projectId
- —
- description
- Bug investigation and fix
- startedAt
- endedAt
- durationMinutes
- 113
- createdAt
Component variants
Small
time-entries/66 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/66" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/66"
);
const timeEntrie = await res.json();import type { TimeEntrie } from "https://example-data.com/types/time-entries.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/time-entries/66"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/66"
)
time_entrie = res.json() {
"id": 66,
"userId": 21,
"taskId": 222,
"projectId": null,
"description": "Bug investigation and fix",
"startedAt": "2026-01-10T15:03:09.707Z",
"endedAt": "2026-01-10T16:56:09.707Z",
"durationMinutes": 113,
"createdAt": "2026-01-10T16:56:09.707Z"
}