time-entries / #40
- userId
-
Zachariah Herzog @zachariah_herzog42
- taskId
- tasks/443
- projectId
- —
- description
- API integration
- startedAt
- endedAt
- durationMinutes
- 462
- createdAt
Component variants
Medium
#40
#40
API integration
Small
time-entries/40 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/40" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/40"
);
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/40"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/40"
)
time_entrie = res.json() {
"id": 40,
"userId": 15,
"taskId": 443,
"projectId": null,
"description": "API integration",
"startedAt": "2026-04-13T01:06:18.831Z",
"endedAt": "2026-04-13T08:48:18.831Z",
"durationMinutes": 462,
"createdAt": "2026-04-13T08:48:18.831Z"
}