tasks / #321
- projectId
- projects/39
- assigneeUserId
- 133
- title
- Add role-based access
- description
- Creta teres defleo triumphus comparo vitium absque accusantium aduro natus.
- status
- todo
- priority
- normal
- dueDate
- 2026-05-28
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/321" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/321"
);
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/321"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/321"
)
task = res.json() {
"id": 321,
"projectId": 39,
"assigneeUserId": 133,
"title": "Add role-based access",
"description": "Creta teres defleo triumphus comparo vitium absque accusantium aduro natus.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-05-28",
"createdAt": "2025-07-12T18:50:42.908Z",
"updatedAt": "2025-09-15T11:31:21.918Z"
}