tasks / #149
- projectId
- projects/20
- assigneeUserId
- 184
- title
- Deploy webhook handler
- description
- Alii eligendi reiciendis stultus torrens patior nulla sperno aer corrupti.
- status
- in_review
- priority
- high
- dueDate
- 2026-06-05
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/149" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/149"
);
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/149"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/149"
)
task = res.json() {
"id": 149,
"projectId": 20,
"assigneeUserId": 184,
"title": "Deploy webhook handler",
"description": "Alii eligendi reiciendis stultus torrens patior nulla sperno aer corrupti.",
"status": "in_review",
"priority": "high",
"dueDate": "2026-06-05",
"createdAt": "2026-04-18T07:00:24.252Z",
"updatedAt": "2026-05-05T09:17:31.047Z"
}