time-entries / #161
- userId
-
Niko Wisozk @niko_wisozk
- taskId
- —
- projectId
- —
- description
- Performance profiling
- startedAt
- endedAt
- durationMinutes
- 274
- createdAt
Component variants
Small
time-entries/161 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/161" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/161"
);
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/161"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/161"
)
time_entrie = res.json() {
"id": 161,
"userId": 56,
"taskId": null,
"projectId": null,
"description": "Performance profiling",
"startedAt": "2026-02-20T20:37:37.068Z",
"endedAt": "2026-02-21T01:11:37.068Z",
"durationMinutes": 274,
"createdAt": "2026-02-21T01:11:37.068Z"
}