time-entries / #124
- userId
-
Trace Witting-Stamm @trace_witting-stamm17
- taskId
- —
- projectId
- projects/38
- description
- Deployment and monitoring
- startedAt
- endedAt
- durationMinutes
- 474
- createdAt
Component variants
Small
time-entries/124 Related
curl -sS \
"https://example-data.com/api/v1/time-entries/124" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/124"
);
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/124"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/124"
)
time_entrie = res.json() {
"id": 124,
"userId": 42,
"taskId": null,
"projectId": 38,
"description": "Deployment and monitoring",
"startedAt": "2026-04-07T19:42:07.578Z",
"endedAt": "2026-04-08T03:36:07.578Z",
"durationMinutes": 474,
"createdAt": "2026-04-08T03:36:07.578Z"
}