tasks / #35
- projectId
- projects/5
- assigneeUserId
- 146
- title
- Fix role-based access
- description
- Tabula temporibus consectetur cohors quo cauda.
- status
- done
- priority
- normal
- dueDate
- 2026-07-22
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/35" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/35"
);
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/35"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/35"
)
task = res.json() {
"id": 35,
"projectId": 5,
"assigneeUserId": 146,
"title": "Fix role-based access",
"description": "Tabula temporibus consectetur cohors quo cauda.",
"status": "done",
"priority": "normal",
"dueDate": "2026-07-22",
"createdAt": "2026-02-07T23:54:03.249Z",
"updatedAt": "2026-05-16T07:55:43.762Z"
}