tasks / #30
- projectId
- projects/4
- assigneeUserId
- 225
- title
- Implement file uploads
- description
- Quasi deprecator curriculum demoror.
- status
- done
- priority
- normal
- dueDate
- 2026-04-27
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/30" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/30"
);
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/30"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/30"
)
task = res.json() {
"id": 30,
"projectId": 4,
"assigneeUserId": 225,
"title": "Implement file uploads",
"description": "Quasi deprecator curriculum demoror.",
"status": "done",
"priority": "normal",
"dueDate": "2026-04-27",
"createdAt": "2025-06-01T15:45:45.077Z",
"updatedAt": "2026-01-19T19:29:46.780Z"
}