tasks / #200
- projectId
- projects/25
- assigneeUserId
- 45
- title
- Configure API endpoint
- description
- Adstringo excepturi sonitus timor coniuratio perspiciatis laudantium culpa venia error.
- status
- done
- priority
- high
- dueDate
- 2026-05-07
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/200" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/200"
);
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/200"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/200"
)
task = res.json() {
"id": 200,
"projectId": 25,
"assigneeUserId": 45,
"title": "Configure API endpoint",
"description": "Adstringo excepturi sonitus timor coniuratio perspiciatis laudantium culpa venia error.",
"status": "done",
"priority": "high",
"dueDate": "2026-05-07",
"createdAt": "2025-12-12T04:57:43.036Z",
"updatedAt": "2026-05-21T16:30:10.046Z"
}