tasks / #97
- projectId
- projects/14
- assigneeUserId
- —
- title
- Document CI pipeline
- description
- Illo coniecto animi delectatio vaco.
- status
- todo
- priority
- urgent
- dueDate
- —
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/97" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/97"
);
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/97"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/97"
)
task = res.json() {
"id": 97,
"projectId": 14,
"assigneeUserId": null,
"title": "Document CI pipeline",
"description": "Illo coniecto animi delectatio vaco.",
"status": "todo",
"priority": "urgent",
"dueDate": null,
"createdAt": "2025-08-07T20:20:27.522Z",
"updatedAt": "2025-09-14T22:34:17.090Z"
}