tasks / #86
- projectId
- projects/12
- assigneeUserId
- 97
- title
- Implement pagination
- description
- Ter ter torrens tabesco arceo suadeo caste crepusculum abscido.
- status
- todo
- priority
- normal
- dueDate
- 2026-08-04
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/86" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/86"
);
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/86"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/86"
)
task = res.json() {
"id": 86,
"projectId": 12,
"assigneeUserId": 97,
"title": "Implement pagination",
"description": "Ter ter torrens tabesco arceo suadeo caste crepusculum abscido.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-08-04",
"createdAt": "2025-08-06T14:47:30.734Z",
"updatedAt": "2025-11-05T15:33:01.844Z"
}