tasks / #79
- projectId
- projects/12
- assigneeUserId
- 102
- title
- Investigate performance metrics
- description
- Adversus valde paens accusamus umerus uxor.
- status
- todo
- priority
- normal
- dueDate
- —
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/79" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/79"
);
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/79"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/79"
)
task = res.json() {
"id": 79,
"projectId": 12,
"assigneeUserId": 102,
"title": "Investigate performance metrics",
"description": "Adversus valde paens accusamus umerus uxor.",
"status": "todo",
"priority": "normal",
"dueDate": null,
"createdAt": "2025-09-18T19:38:14.381Z",
"updatedAt": "2026-04-18T04:37:41.928Z"
}