time-entries / #61
- userId
-
Alvina Koch @alvina.koch8
- taskId
- tasks/336
- projectId
- —
- description
- Deployment and monitoring
- startedAt
- endedAt
- durationMinutes
- 259
- createdAt
Component variants
Small
time-entries/61 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/61" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/61"
);
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/61"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/61"
)
time_entrie = res.json() {
"id": 61,
"userId": 20,
"taskId": 336,
"projectId": null,
"description": "Deployment and monitoring",
"startedAt": "2026-01-26T03:34:46.398Z",
"endedAt": "2026-01-26T07:53:46.398Z",
"durationMinutes": 259,
"createdAt": "2026-01-26T07:53:46.398Z"
}