Fix logging
- projectId
- projects/83
- assigneeUserId
- —
- title
- Fix logging
- description
- Alius adipisci civitas tripudio ambitus laboriosam.
- status
- in_review
- priority
- normal
- dueDate
- 2026-06-23
- createdAt
- updatedAt
Overview
tasks / #698
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/698" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/698" ); const task = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tasks.d.ts https://example-data.com/types/tasks.d.ts
import type { Task } from "./types/tasks";
const res = await fetch(
"https://example-data.com/api/v1/tasks/698"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/698"
)
task = res.json() Response
{
"id": 698,
"projectId": 83,
"assigneeUserId": null,
"title": "Fix logging",
"description": "Alius adipisci civitas tripudio ambitus laboriosam.",
"status": "in_review",
"priority": "normal",
"dueDate": "2026-06-23",
"createdAt": "2025-06-25T21:24:08.220Z",
"updatedAt": "2025-08-21T18:18:44.083Z"
}