time-entries / #70
- userId
-
Antoinette Greenfelder @antoinette_greenfelder61
- taskId
- tasks/449
- projectId
- —
- description
- Implementing feature
- startedAt
- endedAt
- durationMinutes
- 406
- createdAt
Component variants
Medium
#70
#70
Implementing feature
Small
time-entries/70 Related
curl -sS \
"https://example-data.com/api/v1/time-entries/70" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/70"
);
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/70"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/70"
)
time_entrie = res.json() {
"id": 70,
"userId": 22,
"taskId": 449,
"projectId": null,
"description": "Implementing feature",
"startedAt": "2026-04-12T00:39:36.301Z",
"endedAt": "2026-04-12T07:25:36.301Z",
"durationMinutes": 406,
"createdAt": "2026-04-12T07:25:36.301Z"
}