tasks / #404
- projectId
- projects/49
- assigneeUserId
- 38
- title
- Document pagination
- description
- Sortitus annus in.
- status
- blocked
- priority
- normal
- dueDate
- 2026-06-07
- createdAt
- updatedAt
Component variants
Small
tasks/404 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/404" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/404"
);
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/404"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/404"
)
task = res.json() {
"id": 404,
"projectId": 49,
"assigneeUserId": 38,
"title": "Document pagination",
"description": "Sortitus annus in.",
"status": "blocked",
"priority": "normal",
"dueDate": "2026-06-07",
"createdAt": "2026-02-11T23:08:15.816Z",
"updatedAt": "2026-03-10T03:42:53.406Z"
}