tasks / #26
- projectId
- projects/3
- assigneeUserId
- 235
- title
- Investigate role-based access
- description
- Sollers autus colo angulus adsidue tribuo deduco textor.
- status
- todo
- priority
- normal
- dueDate
- 2026-04-29
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/26" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/26"
);
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/26"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/26"
)
task = res.json() {
"id": 26,
"projectId": 3,
"assigneeUserId": 235,
"title": "Investigate role-based access",
"description": "Sollers autus colo angulus adsidue tribuo deduco textor.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-04-29",
"createdAt": "2025-09-14T17:13:32.351Z",
"updatedAt": "2026-02-14T13:33:55.374Z"
}