tasks / #12
- projectId
- projects/1
- assigneeUserId
- 128
- title
- Optimize caching layer
- description
- Tego usus paens armarium ratione desparatus confido cras textor.
- status
- todo
- priority
- normal
- dueDate
- 2026-07-12
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/12" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/12"
);
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/12"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/12"
)
task = res.json() {
"id": 12,
"projectId": 1,
"assigneeUserId": 128,
"title": "Optimize caching layer",
"description": "Tego usus paens armarium ratione desparatus confido cras textor.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-07-12",
"createdAt": "2025-10-17T22:04:20.732Z",
"updatedAt": "2025-10-29T19:41:09.432Z"
}