tasks / #159
- projectId
- projects/20
- assigneeUserId
- 29
- title
- Implement performance metrics
- description
- Amo adstringo textor cunae caste ipsum cursus.
- status
- in_review
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/159" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/159"
);
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/159"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/159"
)
task = res.json() {
"id": 159,
"projectId": 20,
"assigneeUserId": 29,
"title": "Implement performance metrics",
"description": "Amo adstringo textor cunae caste ipsum cursus.",
"status": "in_review",
"priority": "high",
"dueDate": null,
"createdAt": "2025-12-26T08:04:28.369Z",
"updatedAt": "2026-03-13T04:26:49.753Z"
}