time-entries / #54
- userId
-
Kenya Abshire @kenya.abshire
- taskId
- —
- projectId
- —
- description
- Implementing feature
- startedAt
- endedAt
- durationMinutes
- 373
- createdAt
Component variants
Medium
#54
#54
Implementing feature
Small
time-entries/54 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/54" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/54"
);
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/54"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/54"
)
time_entrie = res.json() {
"id": 54,
"userId": 18,
"taskId": null,
"projectId": null,
"description": "Implementing feature",
"startedAt": "2025-12-12T02:14:25.529Z",
"endedAt": "2025-12-12T08:27:25.529Z",
"durationMinutes": 373,
"createdAt": "2025-12-12T08:27:25.529Z"
}