time-entries / #81
- userId
-
Melvina Reilly @melvina_reilly83
- taskId
- —
- projectId
- —
- description
- Meeting preparation
- startedAt
- endedAt
- durationMinutes
- 288
- createdAt
Component variants
Medium
#81
#81
Meeting preparation
Small
time-entries/81 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/81" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/81"
);
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/81"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/81"
)
time_entrie = res.json() {
"id": 81,
"userId": 26,
"taskId": null,
"projectId": null,
"description": "Meeting preparation",
"startedAt": "2026-03-06T07:43:26.796Z",
"endedAt": "2026-03-06T12:31:26.796Z",
"durationMinutes": 288,
"createdAt": "2026-03-06T12:31:26.796Z"
}