time-entries #290
- userId
-
Rosina Larkin @rosina.larkin75
- taskId
- —
- projectId
- projects/43
- description
- Onboarding support
- startedAt
- endedAt
- durationMinutes
- 360
- createdAt
Overview
time-entries / #290
#290
#290
Onboarding support
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/290" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/290" ); 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/290"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/290"
)
time_entrie = res.json() Response
{
"id": 290,
"userId": 103,
"taskId": null,
"projectId": 43,
"description": "Onboarding support",
"startedAt": "2026-01-24T10:56:08.135Z",
"endedAt": "2026-01-24T16:56:08.135Z",
"durationMinutes": 360,
"createdAt": "2026-01-24T16:56:08.135Z"
}