tasks / #181
- projectId
- projects/23
- assigneeUserId
- 162
- title
- Configure user authentication
- description
- Ater voluptatum correptius varius aggero aestas dolor.
- status
- blocked
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/181" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/181"
);
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/181"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/181"
)
task = res.json() {
"id": 181,
"projectId": 23,
"assigneeUserId": 162,
"title": "Configure user authentication",
"description": "Ater voluptatum correptius varius aggero aestas dolor.",
"status": "blocked",
"priority": "high",
"dueDate": null,
"createdAt": "2026-01-16T02:44:45.887Z",
"updatedAt": "2026-01-20T22:16:33.800Z"
}