time-entries / #24
- userId
-
Alvena Emmerich @alvena_emmerich52
- taskId
- —
- projectId
- —
- description
- Incident response
- startedAt
- endedAt
- durationMinutes
- 343
- createdAt
Component variants
Medium
#24
#24
Incident response
Small
time-entries/24 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/24" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/24"
);
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/24"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/24"
)
time_entrie = res.json() {
"id": 24,
"userId": 8,
"taskId": null,
"projectId": null,
"description": "Incident response",
"startedAt": "2026-03-21T08:59:14.848Z",
"endedAt": "2026-03-21T14:42:14.848Z",
"durationMinutes": 343,
"createdAt": "2026-03-21T14:42:14.848Z"
}