tasks / #98
- projectId
- projects/14
- assigneeUserId
- 165
- title
- Deploy error handling
- description
- Appono suffragium succedo condico adaugeo ullam minima coaegresco defleo spoliatio.
- status
- todo
- priority
- normal
- dueDate
- 2026-07-23
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/98" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/98"
);
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/98"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/98"
)
task = res.json() {
"id": 98,
"projectId": 14,
"assigneeUserId": 165,
"title": "Deploy error handling",
"description": "Appono suffragium succedo condico adaugeo ullam minima coaegresco defleo spoliatio.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-07-23",
"createdAt": "2025-06-15T06:48:24.829Z",
"updatedAt": "2025-12-18T05:38:02.023Z"
}