tasks / #57
- projectId
- projects/9
- assigneeUserId
- 40
- title
- Configure performance metrics
- description
- Trucido sollers turba officia curis cariosus crinis.
- status
- todo
- priority
- low
- dueDate
- —
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/57" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/57"
);
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/57"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/57"
)
task = res.json() {
"id": 57,
"projectId": 9,
"assigneeUserId": 40,
"title": "Configure performance metrics",
"description": "Trucido sollers turba officia curis cariosus crinis.",
"status": "todo",
"priority": "low",
"dueDate": null,
"createdAt": "2025-05-31T14:21:03.625Z",
"updatedAt": "2026-05-21T13:08:01.566Z"
}