tasks / #56
- projectId
- projects/9
- assigneeUserId
- 246
- title
- Integrate UI component
- description
- Earum defetiscor accendo contego suffragium vorago tristis sperno.
- status
- done
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/56" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/56"
);
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/56"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/56"
)
task = res.json() {
"id": 56,
"projectId": 9,
"assigneeUserId": 246,
"title": "Integrate UI component",
"description": "Earum defetiscor accendo contego suffragium vorago tristis sperno.",
"status": "done",
"priority": "high",
"dueDate": null,
"createdAt": "2025-08-01T13:41:31.615Z",
"updatedAt": "2025-10-13T18:19:27.136Z"
}