tasks / #11
- projectId
- projects/1
- assigneeUserId
- 114
- title
- Document data export
- description
- Claustrum vix vita fugiat venia creta vulgivagus demens vindico vitae.
- status
- in_review
- priority
- normal
- dueDate
- 2026-08-04
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/11" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/11"
);
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/11"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/11"
)
task = res.json() {
"id": 11,
"projectId": 1,
"assigneeUserId": 114,
"title": "Document data export",
"description": "Claustrum vix vita fugiat venia creta vulgivagus demens vindico vitae.",
"status": "in_review",
"priority": "normal",
"dueDate": "2026-08-04",
"createdAt": "2025-12-26T01:09:39.738Z",
"updatedAt": "2026-04-20T06:15:18.952Z"
}