time-entries / #14
- userId
-
Brycen Bayer @brycen_bayer60
- taskId
- —
- projectId
- —
- description
- Implementing feature
- startedAt
- endedAt
- durationMinutes
- 105
- createdAt
Component variants
Medium
#14
#14
Implementing feature
Small
time-entries/14 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/14" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/14"
);
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/14"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/14"
)
time_entrie = res.json() {
"id": 14,
"userId": 6,
"taskId": null,
"projectId": null,
"description": "Implementing feature",
"startedAt": "2025-12-01T07:10:42.469Z",
"endedAt": "2025-12-01T08:55:42.469Z",
"durationMinutes": 105,
"createdAt": "2025-12-01T08:55:42.469Z"
}