time-entries / #86
- userId
-
Queen Lubowitz @queen.lubowitz76
- taskId
- tasks/707
- projectId
- —
- description
- Incident response
- startedAt
- endedAt
- durationMinutes
- 310
- createdAt
Component variants
Medium
#86
#86
Incident response
Small
time-entries/86 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/86" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/86"
);
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/86"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/86"
)
time_entrie = res.json() {
"id": 86,
"userId": 28,
"taskId": 707,
"projectId": null,
"description": "Incident response",
"startedAt": "2026-02-03T03:57:48.142Z",
"endedAt": "2026-02-03T09:07:48.142Z",
"durationMinutes": 310,
"createdAt": "2026-02-03T09:07:48.142Z"
}