tasks / #231
- projectId
- projects/28
- assigneeUserId
- —
- title
- Investigate CI pipeline
- description
- Valde tui totam commodo est tergo volaticus aliquam creator adipisci.
- status
- done
- priority
- normal
- dueDate
- 2026-05-17
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/231" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/231"
);
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/231"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/231"
)
task = res.json() {
"id": 231,
"projectId": 28,
"assigneeUserId": null,
"title": "Investigate CI pipeline",
"description": "Valde tui totam commodo est tergo volaticus aliquam creator adipisci.",
"status": "done",
"priority": "normal",
"dueDate": "2026-05-17",
"createdAt": "2025-10-14T04:32:15.088Z",
"updatedAt": "2026-01-12T15:18:59.254Z"
}