tasks / #166
- projectId
- projects/22
- assigneeUserId
- 7
- title
- Integrate error handling
- description
- Audax avarus confido a tertius.
- status
- done
- priority
- normal
- dueDate
- 2026-05-13
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/166" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/166"
);
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/166"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/166"
)
task = res.json() {
"id": 166,
"projectId": 22,
"assigneeUserId": 7,
"title": "Integrate error handling",
"description": "Audax avarus confido a tertius.",
"status": "done",
"priority": "normal",
"dueDate": "2026-05-13",
"createdAt": "2026-05-07T17:52:42.921Z",
"updatedAt": "2026-05-15T04:30:08.230Z"
}