tasks / #14
- projectId
- projects/1
- assigneeUserId
- 123
- title
- Update caching layer
- description
- Placeat cibus vorago suffragium theologus non sulum viridis.
- status
- done
- priority
- low
- dueDate
- —
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/14" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/14"
);
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/14"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/14"
)
task = res.json() {
"id": 14,
"projectId": 1,
"assigneeUserId": 123,
"title": "Update caching layer",
"description": "Placeat cibus vorago suffragium theologus non sulum viridis.",
"status": "done",
"priority": "low",
"dueDate": null,
"createdAt": "2026-03-16T02:11:30.074Z",
"updatedAt": "2026-03-16T16:05:28.782Z"
}