tasks / #532
- projectId
- projects/65
- assigneeUserId
- —
- title
- Integrate error handling
- description
- Videlicet canis candidus.
- status
- in_progress
- priority
- low
- dueDate
- 2026-06-20
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/532" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/532"
);
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/532"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/532"
)
task = res.json() {
"id": 532,
"projectId": 65,
"assigneeUserId": null,
"title": "Integrate error handling",
"description": "Videlicet canis candidus.",
"status": "in_progress",
"priority": "low",
"dueDate": "2026-06-20",
"createdAt": "2026-04-28T06:58:03.467Z",
"updatedAt": "2026-05-09T06:32:38.304Z"
}