tasks / #533
- projectId
- projects/65
- assigneeUserId
- 226
- title
- Test logging
- description
- Tot adsuesco adsidue curto truculenter absque velut auctus.
- status
- todo
- priority
- high
- dueDate
- 2026-07-10
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/533" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/533"
);
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/533"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/533"
)
task = res.json() {
"id": 533,
"projectId": 65,
"assigneeUserId": 226,
"title": "Test logging",
"description": "Tot adsuesco adsidue curto truculenter absque velut auctus.",
"status": "todo",
"priority": "high",
"dueDate": "2026-07-10",
"createdAt": "2025-09-12T12:13:43.501Z",
"updatedAt": "2025-11-24T04:32:14.504Z"
}