tasks / #27
- projectId
- projects/3
- assigneeUserId
- 6
- title
- Fix role-based access
- description
- Stella non admoveo stips timidus.
- status
- done
- priority
- high
- dueDate
- 2026-06-21
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/27" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/27"
);
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/27"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/27"
)
task = res.json() {
"id": 27,
"projectId": 3,
"assigneeUserId": 6,
"title": "Fix role-based access",
"description": "Stella non admoveo stips timidus.",
"status": "done",
"priority": "high",
"dueDate": "2026-06-21",
"createdAt": "2026-02-24T22:05:43.991Z",
"updatedAt": "2026-05-20T17:20:10.239Z"
}