tasks / #194
- projectId
- projects/25
- assigneeUserId
- 22
- title
- Investigate performance metrics
- description
- Voro tenetur utpote creator cometes admoveo admiratio.
- status
- in_review
- priority
- normal
- dueDate
- 2026-08-08
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/194" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/194"
);
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/194"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/194"
)
task = res.json() {
"id": 194,
"projectId": 25,
"assigneeUserId": 22,
"title": "Investigate performance metrics",
"description": "Voro tenetur utpote creator cometes admoveo admiratio.",
"status": "in_review",
"priority": "normal",
"dueDate": "2026-08-08",
"createdAt": "2025-10-23T03:53:08.287Z",
"updatedAt": "2025-10-27T01:26:30.481Z"
}