tasks / #708
- projectId
- projects/84
- assigneeUserId
- 140
- title
- Optimize role-based access
- description
- Adsuesco appositus tempore animi venustas cultura amplus utor collum.
- status
- in_review
- priority
- normal
- dueDate
- 2026-06-18
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/708" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/708"
);
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/708"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/708"
)
task = res.json() {
"id": 708,
"projectId": 84,
"assigneeUserId": 140,
"title": "Optimize role-based access",
"description": "Adsuesco appositus tempore animi venustas cultura amplus utor collum.",
"status": "in_review",
"priority": "normal",
"dueDate": "2026-06-18",
"createdAt": "2026-04-07T02:53:35.216Z",
"updatedAt": "2026-04-23T04:29:10.896Z"
}