tasks / #106
- projectId
- projects/14
- assigneeUserId
- —
- title
- Implement performance metrics
- description
- Vestigium bibo ipsam apostolus votum ager.
- status
- done
- priority
- normal
- dueDate
- 2026-08-13
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/106" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/106"
);
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/106"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/106"
)
task = res.json() {
"id": 106,
"projectId": 14,
"assigneeUserId": null,
"title": "Implement performance metrics",
"description": "Vestigium bibo ipsam apostolus votum ager.",
"status": "done",
"priority": "normal",
"dueDate": "2026-08-13",
"createdAt": "2025-06-08T01:51:41.187Z",
"updatedAt": "2025-10-07T22:45:04.326Z"
}