time-entries / #117
- userId
-
Gwendolyn Wyman @gwendolyn.wyman87
- taskId
- —
- projectId
- —
- description
- Customer call
- startedAt
- endedAt
- durationMinutes
- 74
- createdAt
Component variants
Medium
#117
#117
Customer call
Small
time-entries/117 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/117" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/117"
);
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/117"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/117"
)
time_entrie = res.json() {
"id": 117,
"userId": 40,
"taskId": null,
"projectId": null,
"description": "Customer call",
"startedAt": "2026-04-08T06:24:52.817Z",
"endedAt": "2026-04-08T07:38:52.817Z",
"durationMinutes": 74,
"createdAt": "2026-04-08T07:38:52.817Z"
}