time-entries / #231
- userId
-
Stephan Heller @stephan.heller
- taskId
- tasks/34
- projectId
- —
- description
- Performance profiling
- startedAt
- endedAt
- durationMinutes
- 326
- createdAt
Component variants
Small
time-entries/231 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/231" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/231"
);
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/231"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/231"
)
time_entrie = res.json() {
"id": 231,
"userId": 82,
"taskId": 34,
"projectId": null,
"description": "Performance profiling",
"startedAt": "2026-03-29T01:28:33.802Z",
"endedAt": "2026-03-29T06:54:33.802Z",
"durationMinutes": 326,
"createdAt": "2026-03-29T06:54:33.802Z"
}