time-entries / #100
- userId
-
Dwight Dicki-Medhurst @dwight.dicki-medhurst69
- taskId
- —
- projectId
- —
- description
- Performance profiling
- startedAt
- endedAt
- durationMinutes
- 166
- createdAt
Component variants
Small
time-entries/100 Related
curl -sS \
"https://example-data.com/api/v1/time-entries/100" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/100"
);
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/100"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/100"
)
time_entrie = res.json() {
"id": 100,
"userId": 35,
"taskId": null,
"projectId": null,
"description": "Performance profiling",
"startedAt": "2026-02-02T13:32:28.189Z",
"endedAt": "2026-02-02T16:18:28.189Z",
"durationMinutes": 166,
"createdAt": "2026-02-02T16:18:28.189Z"
}