time-entries #97
- userId
-
Koby Pouros @koby_pouros60
- taskId
- tasks/557
- projectId
- —
- description
- Onboarding support
- startedAt
- endedAt
- durationMinutes
- 16
- createdAt
Overview
time-entries / #97
#97
#97
Onboarding support
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/97" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/97" ); 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/97"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/97"
)
time_entrie = res.json() Response
{
"id": 97,
"userId": 34,
"taskId": 557,
"projectId": null,
"description": "Onboarding support",
"startedAt": "2025-12-14T07:08:43.115Z",
"endedAt": "2025-12-14T07:24:43.115Z",
"durationMinutes": 16,
"createdAt": "2025-12-14T07:24:43.115Z"
}