time-entries / #30
- userId
-
Leonel Hamill @leonel_hamill33
- taskId
- —
- projectId
- projects/50
- description
- Deployment and monitoring
- startedAt
- endedAt
- durationMinutes
- 72
- createdAt
Component variants
Small
time-entries/30 Related
References
curl -sS \
"https://example-data.com/api/v1/time-entries/30" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/time-entries/30"
);
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/30"
);
const timeEntrie = (await res.json()) as TimeEntrie;import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/30"
)
time_entrie = res.json() {
"id": 30,
"userId": 11,
"taskId": null,
"projectId": 50,
"description": "Deployment and monitoring",
"startedAt": "2026-04-22T12:18:58.077Z",
"endedAt": "2026-04-22T13:30:58.077Z",
"durationMinutes": 72,
"createdAt": "2026-04-22T13:30:58.077Z"
}