time-entries / #226
- userId
-
Mateo Gerlach @mateo.gerlach
- taskId
- —
- projectId
- projects/22
- description
- API integration
- startedAt
- endedAt
- durationMinutes
- 313
- createdAt
Component variants
Medium
#226
#226
API integration
Small
time-entries/226 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/226" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/226"
);
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/226"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/226"
)
time_entrie = res.json() {
"id": 226,
"userId": 81,
"taskId": null,
"projectId": 22,
"description": "API integration",
"startedAt": "2026-01-20T20:07:21.161Z",
"endedAt": "2026-01-21T01:20:21.161Z",
"durationMinutes": 313,
"createdAt": "2026-01-21T01:20:21.161Z"
}