tasks / #171
- projectId
- projects/22
- assigneeUserId
- 84
- title
- Add caching layer
- description
- Vinculum cervus sustineo nobis caelestis sapiente acidus aeger.
- status
- todo
- priority
- urgent
- dueDate
- —
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/171" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/171"
);
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/171"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/171"
)
task = res.json() {
"id": 171,
"projectId": 22,
"assigneeUserId": 84,
"title": "Add caching layer",
"description": "Vinculum cervus sustineo nobis caelestis sapiente acidus aeger.",
"status": "todo",
"priority": "urgent",
"dueDate": null,
"createdAt": "2026-02-04T22:24:57.251Z",
"updatedAt": "2026-05-18T14:51:37.395Z"
}