tasks / #33
- projectId
- projects/5
- assigneeUserId
- 186
- title
- Review API endpoint
- description
- Usque cumque tergo civitas volutabrum vel caterva adicio animadverto tolero.
- status
- in_progress
- priority
- normal
- dueDate
- 2026-07-13
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/33" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/33"
);
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/33"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/33"
)
task = res.json() {
"id": 33,
"projectId": 5,
"assigneeUserId": 186,
"title": "Review API endpoint",
"description": "Usque cumque tergo civitas volutabrum vel caterva adicio animadverto tolero.",
"status": "in_progress",
"priority": "normal",
"dueDate": "2026-07-13",
"createdAt": "2025-11-16T16:43:24.117Z",
"updatedAt": "2026-03-07T05:14:20.517Z"
}