time-entries #19
- userId
-
Einar Volkman @einar_volkman69
- taskId
- tasks/192
- projectId
- —
- description
- Onboarding support
- startedAt
- endedAt
- durationMinutes
- 18
- createdAt
Overview
time-entries / #19
#19
#19
Onboarding support
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/19" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/19" ); const timeEntry = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/time-entries.d.ts https://example-data.com/types/time-entries.d.ts
import type { TimeEntry } from "./types/time-entries";
const res = await fetch(
"https://example-data.com/api/v1/time-entries/19"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/19"
)
time_entrie = res.json() Response
{
"id": 19,
"userId": 7,
"taskId": 192,
"projectId": null,
"description": "Onboarding support",
"startedAt": "2025-12-05T01:02:24.122Z",
"endedAt": "2025-12-05T01:20:24.122Z",
"durationMinutes": 18,
"createdAt": "2025-12-05T01:20:24.122Z"
}