tasks / #20
- projectId
- projects/2
- assigneeUserId
- 116
- title
- Implement file uploads
- description
- Depereo clarus amoveo supra velut ater creta tabernus.
- status
- done
- priority
- high
- dueDate
- 2026-06-10
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/20" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/20"
);
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/20"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/20"
)
task = res.json() {
"id": 20,
"projectId": 2,
"assigneeUserId": 116,
"title": "Implement file uploads",
"description": "Depereo clarus amoveo supra velut ater creta tabernus.",
"status": "done",
"priority": "high",
"dueDate": "2026-06-10",
"createdAt": "2025-07-15T04:49:22.026Z",
"updatedAt": "2025-09-09T01:39:47.769Z"
}