time-entries / #99
- userId
-
Dwight Dicki-Medhurst @dwight.dicki-medhurst69
- taskId
- tasks/188
- projectId
- —
- description
- Deployment and monitoring
- startedAt
- endedAt
- durationMinutes
- 463
- createdAt
Component variants
Small
time-entries/99 Related
curl -sS \
"https://example-data.com/api/v1/time-entries/99" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/99"
);
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/99"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/99"
)
time_entrie = res.json() {
"id": 99,
"userId": 35,
"taskId": 188,
"projectId": null,
"description": "Deployment and monitoring",
"startedAt": "2026-02-04T04:23:21.643Z",
"endedAt": "2026-02-04T12:06:21.643Z",
"durationMinutes": 463,
"createdAt": "2026-02-04T12:06:21.643Z"
}