Remove logging
- projectId
- projects/9
- assigneeUserId
- —
- title
- Remove logging
- description
- Verecundia cibo arx deserunt quas auctor.
- status
- todo
- priority
- normal
- dueDate
- 2026-05-18
- createdAt
- updatedAt
Overview
tasks / #60
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/60" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/60" ); 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/60"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/60"
)
task = res.json() Response
{
"id": 60,
"projectId": 9,
"assigneeUserId": null,
"title": "Remove logging",
"description": "Verecundia cibo arx deserunt quas auctor.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-05-18",
"createdAt": "2025-12-30T06:47:22.556Z",
"updatedAt": "2026-02-19T11:12:30.532Z"
}