time-entries / #230
- userId
-
Stephan Heller @stephan.heller
- taskId
- —
- projectId
- projects/23
- description
- Performance profiling
- startedAt
- endedAt
- durationMinutes
- 303
- createdAt
Component variants
Small
time-entries/230 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/230" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/230"
);
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/230"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/230"
)
time_entrie = res.json() {
"id": 230,
"userId": 82,
"taskId": null,
"projectId": 23,
"description": "Performance profiling",
"startedAt": "2026-01-07T14:03:07.819Z",
"endedAt": "2026-01-07T19:06:07.819Z",
"durationMinutes": 303,
"createdAt": "2026-01-07T19:06:07.819Z"
}