tasks / #133
- projectId
- projects/17
- assigneeUserId
- 101
- title
- Review data export
- description
- Aeger depromo animadverto concido provident.
- status
- todo
- priority
- normal
- dueDate
- 2026-07-19
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/133" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/133"
);
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/133"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/133"
)
task = res.json() {
"id": 133,
"projectId": 17,
"assigneeUserId": 101,
"title": "Review data export",
"description": "Aeger depromo animadverto concido provident.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-07-19",
"createdAt": "2026-01-19T12:04:19.757Z",
"updatedAt": "2026-05-16T06:05:31.127Z"
}