time-entries / #190
- userId
-
Lamont Huel @lamont.huel
- taskId
- tasks/402
- projectId
- —
- description
- Refactoring legacy code
- startedAt
- endedAt
- durationMinutes
- 105
- createdAt
Component variants
Small
time-entries/190 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/190" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/190"
);
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/190"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/190"
)
time_entrie = res.json() {
"id": 190,
"userId": 69,
"taskId": 402,
"projectId": null,
"description": "Refactoring legacy code",
"startedAt": "2026-03-17T00:39:11.919Z",
"endedAt": "2026-03-17T02:24:11.919Z",
"durationMinutes": 105,
"createdAt": "2026-03-17T02:24:11.919Z"
}