tasks / #211
- projectId
- projects/27
- assigneeUserId
- —
- title
- Update user authentication
- description
- Volaticus unde corrigo verumtamen enim pecto conturbo.
- status
- done
- priority
- normal
- dueDate
- 2026-05-30
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/211" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/211"
);
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/211"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/211"
)
task = res.json() {
"id": 211,
"projectId": 27,
"assigneeUserId": null,
"title": "Update user authentication",
"description": "Volaticus unde corrigo verumtamen enim pecto conturbo.",
"status": "done",
"priority": "normal",
"dueDate": "2026-05-30",
"createdAt": "2025-11-05T12:03:17.406Z",
"updatedAt": "2026-02-06T07:15:44.113Z"
}