tasks / #90
- projectId
- projects/13
- assigneeUserId
- 75
- title
- Implement unit tests
- description
- Cenaculum accusamus caste.
- status
- blocked
- priority
- low
- dueDate
- 2026-07-17
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/90" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/90"
);
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/90"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/90"
)
task = res.json() {
"id": 90,
"projectId": 13,
"assigneeUserId": 75,
"title": "Implement unit tests",
"description": "Cenaculum accusamus caste.",
"status": "blocked",
"priority": "low",
"dueDate": "2026-07-17",
"createdAt": "2025-09-27T05:11:13.490Z",
"updatedAt": "2026-05-19T16:26:16.284Z"
}