tasks / #50
- projectId
- projects/7
- assigneeUserId
- 133
- title
- Test dashboard widget
- description
- Desipio coma laborum terreo chirographum solvo viridis depromo solium trepide.
- status
- done
- priority
- normal
- dueDate
- 2026-07-21
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/50" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/50"
);
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/50"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/50"
)
task = res.json() {
"id": 50,
"projectId": 7,
"assigneeUserId": 133,
"title": "Test dashboard widget",
"description": "Desipio coma laborum terreo chirographum solvo viridis depromo solium trepide.",
"status": "done",
"priority": "normal",
"dueDate": "2026-07-21",
"createdAt": "2025-11-27T18:29:34.756Z",
"updatedAt": "2026-02-28T03:24:54.200Z"
}