time-entries #621
- userId
-
Jameson Considine @jameson.considine1
- taskId
- tasks/122
- projectId
- —
- description
- Incident response
- startedAt
- endedAt
- durationMinutes
- 160
- createdAt
Overview
time-entries / #621
#621
#621
Incident response
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/621" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/621" ); 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/621"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/621"
)
time_entrie = res.json() Response
{
"id": 621,
"userId": 236,
"taskId": 122,
"projectId": null,
"description": "Incident response",
"startedAt": "2026-04-20T09:53:20.895Z",
"endedAt": "2026-04-20T12:33:20.895Z",
"durationMinutes": 160,
"createdAt": "2026-04-20T12:33:20.895Z"
}