time-entries / #131
- userId
-
Myrtie Daniel @myrtie_daniel33
- taskId
- tasks/100
- projectId
- —
- description
- Performance profiling
- startedAt
- endedAt
- durationMinutes
- 313
- createdAt
Component variants
Small
time-entries/131 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/131" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/131"
);
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/131"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/131"
)
time_entrie = res.json() {
"id": 131,
"userId": 45,
"taskId": 100,
"projectId": null,
"description": "Performance profiling",
"startedAt": "2026-05-12T06:28:18.200Z",
"endedAt": "2026-05-12T11:41:18.200Z",
"durationMinutes": 313,
"createdAt": "2026-05-12T11:41:18.200Z"
}