tasks / #392
- projectId
- projects/47
- assigneeUserId
- 1
- title
- Remove logging
- description
- Aestivus congregatio cinis acceptus acies tum tergum vacuus catena aetas.
- status
- blocked
- priority
- urgent
- dueDate
- —
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/392" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/392"
);
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/392"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/392"
)
task = res.json() {
"id": 392,
"projectId": 47,
"assigneeUserId": 1,
"title": "Remove logging",
"description": "Aestivus congregatio cinis acceptus acies tum tergum vacuus catena aetas.",
"status": "blocked",
"priority": "urgent",
"dueDate": null,
"createdAt": "2025-10-30T06:26:26.550Z",
"updatedAt": "2025-12-18T05:42:15.596Z"
}