tasks / #205
- projectId
- projects/26
- assigneeUserId
- 110
- title
- Configure user authentication
- description
- Cibo deinde clementia.
- status
- todo
- priority
- normal
- dueDate
- 2026-07-29
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/205" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/205"
);
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/205"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/205"
)
task = res.json() {
"id": 205,
"projectId": 26,
"assigneeUserId": 110,
"title": "Configure user authentication",
"description": "Cibo deinde clementia.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-07-29",
"createdAt": "2026-01-28T08:26:08.553Z",
"updatedAt": "2026-04-29T02:39:16.966Z"
}