time-entries / #135
- userId
-
Della Labadie @della_labadie
- taskId
- tasks/686
- projectId
- —
- description
- UI component work
- startedAt
- endedAt
- durationMinutes
- 442
- createdAt
Component variants
Medium
#135
#135
UI component work
Small
time-entries/135 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/135" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/135"
);
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/135"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/135"
)
time_entrie = res.json() {
"id": 135,
"userId": 46,
"taskId": 686,
"projectId": null,
"description": "UI component work",
"startedAt": "2026-02-19T13:04:34.771Z",
"endedAt": "2026-02-19T20:26:34.771Z",
"durationMinutes": 442,
"createdAt": "2026-02-19T20:26:34.771Z"
}