tasks / #163
- projectId
- projects/21
- assigneeUserId
- 96
- title
- Configure analytics tracking
- description
- Aegrus crastinus sulum totam depulso.
- status
- todo
- priority
- low
- dueDate
- —
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/163" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/163"
);
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/163"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/163"
)
task = res.json() {
"id": 163,
"projectId": 21,
"assigneeUserId": 96,
"title": "Configure analytics tracking",
"description": "Aegrus crastinus sulum totam depulso.",
"status": "todo",
"priority": "low",
"dueDate": null,
"createdAt": "2025-08-21T16:05:47.649Z",
"updatedAt": "2025-10-04T04:02:13.449Z"
}