time-entries / #63
- userId
-
Alvina Koch @alvina.koch8
- taskId
- —
- projectId
- projects/22
- description
- Onboarding support
- startedAt
- endedAt
- durationMinutes
- 140
- createdAt
Component variants
Medium
#63
#63
Onboarding support
Small
time-entries/63 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/63" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/63"
);
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/63"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/63"
)
time_entrie = res.json() {
"id": 63,
"userId": 20,
"taskId": null,
"projectId": 22,
"description": "Onboarding support",
"startedAt": "2026-05-16T10:26:51.648Z",
"endedAt": "2026-05-16T12:46:51.648Z",
"durationMinutes": 140,
"createdAt": "2026-05-16T12:46:51.648Z"
}