time-entries / #64
- userId
-
Alvina Koch @alvina.koch8
- taskId
- —
- projectId
- —
- description
- Implementing feature
- startedAt
- endedAt
- durationMinutes
- 41
- createdAt
Component variants
Medium
#64
#64
Implementing feature
Small
time-entries/64 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/64" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/64"
);
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/64"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/64"
)
time_entrie = res.json() {
"id": 64,
"userId": 20,
"taskId": null,
"projectId": null,
"description": "Implementing feature",
"startedAt": "2026-03-11T08:12:41.254Z",
"endedAt": "2026-03-11T08:53:41.254Z",
"durationMinutes": 41,
"createdAt": "2026-03-11T08:53:41.254Z"
}