time-entries / #108
- userId
-
Lenny Howe @lenny.howe
- taskId
- tasks/430
- projectId
- —
- description
- Meeting preparation
- startedAt
- endedAt
- durationMinutes
- 421
- createdAt
Component variants
Small
time-entries/108 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/108" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/108"
);
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/108"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/108"
)
time_entrie = res.json() {
"id": 108,
"userId": 37,
"taskId": 430,
"projectId": null,
"description": "Meeting preparation",
"startedAt": "2026-04-10T14:07:56.486Z",
"endedAt": "2026-04-10T21:08:56.486Z",
"durationMinutes": 421,
"createdAt": "2026-04-10T21:08:56.486Z"
}