time-entries / #115
- userId
-
Gwendolyn Wyman @gwendolyn.wyman87
- taskId
- —
- projectId
- projects/29
- description
- Performance profiling
- startedAt
- endedAt
- durationMinutes
- 80
- createdAt
Component variants
Small
time-entries/115 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/115" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/115"
);
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/115"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/115"
)
time_entrie = res.json() {
"id": 115,
"userId": 40,
"taskId": null,
"projectId": 29,
"description": "Performance profiling",
"startedAt": "2026-04-03T14:25:49.936Z",
"endedAt": "2026-04-03T15:45:49.936Z",
"durationMinutes": 80,
"createdAt": "2026-04-03T15:45:49.936Z"
}