time-entries / #180
- userId
-
Tiara Wilderman @tiara_wilderman
- taskId
- —
- projectId
- projects/45
- description
- Bug investigation and fix
- startedAt
- endedAt
- durationMinutes
- 349
- createdAt
Component variants
Small
time-entries/180 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/180" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/180"
);
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/180"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/180"
)
time_entrie = res.json() {
"id": 180,
"userId": 66,
"taskId": null,
"projectId": 45,
"description": "Bug investigation and fix",
"startedAt": "2026-05-20T23:20:46.419Z",
"endedAt": "2026-05-21T05:09:46.419Z",
"durationMinutes": 349,
"createdAt": "2026-05-21T05:09:46.419Z"
}