tasks / #132
- projectId
- projects/17
- assigneeUserId
- 66
- title
- Test error handling
- description
- Conspergo timidus totam.
- status
- done
- priority
- urgent
- dueDate
- 2026-07-08
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/132" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/132"
);
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/132"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/132"
)
task = res.json() {
"id": 132,
"projectId": 17,
"assigneeUserId": 66,
"title": "Test error handling",
"description": "Conspergo timidus totam.",
"status": "done",
"priority": "urgent",
"dueDate": "2026-07-08",
"createdAt": "2025-09-26T04:10:06.832Z",
"updatedAt": "2025-12-18T22:12:00.922Z"
}