tasks / #83
- projectId
- projects/12
- assigneeUserId
- 67
- title
- Implement webhook handler
- description
- Vitium appello velum tot chirographum a super.
- status
- in_progress
- priority
- urgent
- dueDate
- —
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/83" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/83"
);
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/83"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/83"
)
task = res.json() {
"id": 83,
"projectId": 12,
"assigneeUserId": 67,
"title": "Implement webhook handler",
"description": "Vitium appello velum tot chirographum a super.",
"status": "in_progress",
"priority": "urgent",
"dueDate": null,
"createdAt": "2026-03-27T08:36:26.036Z",
"updatedAt": "2026-04-02T09:47:36.372Z"
}