tasks / #61
- projectId
- projects/9
- assigneeUserId
- 231
- title
- Review analytics tracking
- description
- Adopto articulus debilito corrupti talis amoveo apostolus.
- status
- done
- priority
- high
- dueDate
- 2026-07-03
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/61" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/61"
);
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/61"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/61"
)
task = res.json() {
"id": 61,
"projectId": 9,
"assigneeUserId": 231,
"title": "Review analytics tracking",
"description": "Adopto articulus debilito corrupti talis amoveo apostolus.",
"status": "done",
"priority": "high",
"dueDate": "2026-07-03",
"createdAt": "2025-12-19T15:22:50.071Z",
"updatedAt": "2026-03-28T16:48:44.995Z"
}