time-entries / #183
- userId
-
Kaden Brekke @kaden_brekke
- taskId
- tasks/25
- projectId
- —
- description
- Bug investigation and fix
- startedAt
- endedAt
- durationMinutes
- 472
- createdAt
Component variants
Small
time-entries/183 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/183" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/183"
);
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/183"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/183"
)
time_entrie = res.json() {
"id": 183,
"userId": 67,
"taskId": 25,
"projectId": null,
"description": "Bug investigation and fix",
"startedAt": "2026-04-01T02:33:45.095Z",
"endedAt": "2026-04-01T10:25:45.095Z",
"durationMinutes": 472,
"createdAt": "2026-04-01T10:25:45.095Z"
}