tasks / #240
- projectId
- projects/30
- assigneeUserId
- 104
- title
- Implement file uploads
- description
- Crastinus tripudio curto trado laborum tonsor tersus utroque audax labore.
- status
- todo
- priority
- normal
- dueDate
- 2026-05-07
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/240" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/240"
);
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/240"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/240"
)
task = res.json() {
"id": 240,
"projectId": 30,
"assigneeUserId": 104,
"title": "Implement file uploads",
"description": "Crastinus tripudio curto trado laborum tonsor tersus utroque audax labore.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-05-07",
"createdAt": "2025-11-05T14:43:18.547Z",
"updatedAt": "2025-11-25T10:09:40.817Z"
}