tasks / #203
- projectId
- projects/25
- assigneeUserId
- 45
- title
- Fix error handling
- description
- Veritatis artificiose aufero copiose adulescens utpote conservo.
- status
- blocked
- priority
- normal
- dueDate
- 2026-04-28
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/203" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/203"
);
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/203"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/203"
)
task = res.json() {
"id": 203,
"projectId": 25,
"assigneeUserId": 45,
"title": "Fix error handling",
"description": "Veritatis artificiose aufero copiose adulescens utpote conservo.",
"status": "blocked",
"priority": "normal",
"dueDate": "2026-04-28",
"createdAt": "2025-07-22T15:17:38.535Z",
"updatedAt": "2025-08-13T10:42:43.858Z"
}