time-entries #325
- userId
-
Leora Doyle @leora_doyle
- taskId
- —
- projectId
- projects/81
- description
- Technical spike
- startedAt
- endedAt
- durationMinutes
- 472
- createdAt
Overview
time-entries / #325
#325
#325
Technical spike
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/325" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/325" ); 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/325"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/325"
)
time_entrie = res.json() Response
{
"id": 325,
"userId": 117,
"taskId": null,
"projectId": 81,
"description": "Technical spike",
"startedAt": "2026-04-14T00:39:13.581Z",
"endedAt": "2026-04-14T08:31:13.581Z",
"durationMinutes": 472,
"createdAt": "2026-04-14T08:31:13.581Z"
}