tasks / #215
- projectId
- projects/27
- assigneeUserId
- 54
- title
- Fix caching layer
- description
- Inflammatio depopulo comedo cometes armarium nemo vere comburo.
- status
- done
- priority
- low
- dueDate
- 2026-06-16
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/215" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/215"
);
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/215"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/215"
)
task = res.json() {
"id": 215,
"projectId": 27,
"assigneeUserId": 54,
"title": "Fix caching layer",
"description": "Inflammatio depopulo comedo cometes armarium nemo vere comburo.",
"status": "done",
"priority": "low",
"dueDate": "2026-06-16",
"createdAt": "2025-08-07T19:38:54.411Z",
"updatedAt": "2025-09-24T10:48:42.363Z"
}