tasks / #595
- projectId
- projects/73
- assigneeUserId
- 36
- title
- Update performance metrics
- description
- Surculus eius tabesco nam.
- status
- done
- priority
- low
- dueDate
- 2026-06-28
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/595" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/595"
);
const task = await res.json();import type { Task } from "https://example-data.com/types/tasks.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tasks/595"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/595"
)
task = res.json() {
"id": 595,
"projectId": 73,
"assigneeUserId": 36,
"title": "Update performance metrics",
"description": "Surculus eius tabesco nam.",
"status": "done",
"priority": "low",
"dueDate": "2026-06-28",
"createdAt": "2025-11-18T11:04:09.096Z",
"updatedAt": "2026-02-14T00:57:23.813Z"
}