Implement logging
- projectId
- projects/80
- assigneeUserId
- —
- title
- Implement logging
- description
- Ocer auctus aequus vinculum surculus.
- status
- todo
- priority
- low
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #668
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/668" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/668" ); 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/668"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/668"
)
task = res.json() Response
{
"id": 668,
"projectId": 80,
"assigneeUserId": null,
"title": "Implement logging",
"description": "Ocer auctus aequus vinculum surculus.",
"status": "todo",
"priority": "low",
"dueDate": null,
"createdAt": "2025-05-31T03:57:00.126Z",
"updatedAt": "2025-10-24T15:30:50.124Z"
}