tasks / #150
- projectId
- projects/20
- assigneeUserId
- 130
- title
- Refactor dashboard widget
- description
- Sursum benevolentia tantillus cribro vilitas antepono cribro depraedor admoneo ex.
- status
- in_review
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/150" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/150"
);
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/150"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/150"
)
task = res.json() {
"id": 150,
"projectId": 20,
"assigneeUserId": 130,
"title": "Refactor dashboard widget",
"description": "Sursum benevolentia tantillus cribro vilitas antepono cribro depraedor admoneo ex.",
"status": "in_review",
"priority": "high",
"dueDate": null,
"createdAt": "2025-09-01T05:57:40.082Z",
"updatedAt": "2026-05-11T19:43:42.026Z"
}