tasks / #63
- projectId
- projects/9
- assigneeUserId
- —
- title
- Refactor unit tests
- description
- Denique contabesco thesaurus tamdiu.
- status
- blocked
- priority
- low
- dueDate
- 2026-07-31
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/63" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/63"
);
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/63"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/63"
)
task = res.json() {
"id": 63,
"projectId": 9,
"assigneeUserId": null,
"title": "Refactor unit tests",
"description": "Denique contabesco thesaurus tamdiu.",
"status": "blocked",
"priority": "low",
"dueDate": "2026-07-31",
"createdAt": "2025-11-28T23:33:59.140Z",
"updatedAt": "2026-04-23T01:12:25.220Z"
}