time-entries / #16
- userId
-
Brycen Bayer @brycen_bayer60
- taskId
- —
- projectId
- —
- description
- Security review
- startedAt
- endedAt
- durationMinutes
- 427
- createdAt
Component variants
Medium
#16
#16
Security review
Small
time-entries/16 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/16" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/16"
);
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/16"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/16"
)
time_entrie = res.json() {
"id": 16,
"userId": 6,
"taskId": null,
"projectId": null,
"description": "Security review",
"startedAt": "2026-04-03T23:02:07.429Z",
"endedAt": "2026-04-04T06:09:07.429Z",
"durationMinutes": 427,
"createdAt": "2026-04-04T06:09:07.429Z"
}