time-entries / #39
- userId
-
Zachariah Herzog @zachariah_herzog42
- taskId
- —
- projectId
- projects/65
- description
- API integration
- startedAt
- endedAt
- durationMinutes
- 86
- createdAt
Component variants
Medium
#39
#39
API integration
Small
time-entries/39 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/39" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/39"
);
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/39"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/39"
)
time_entrie = res.json() {
"id": 39,
"userId": 15,
"taskId": null,
"projectId": 65,
"description": "API integration",
"startedAt": "2025-12-28T18:03:36.930Z",
"endedAt": "2025-12-28T19:29:36.930Z",
"durationMinutes": 86,
"createdAt": "2025-12-28T19:29:36.930Z"
}