tasks / #377
- projectId
- projects/45
- assigneeUserId
- 215
- title
- Remove database query
- description
- Consuasor conforto bellicus adsum conspergo animus templum tristis.
- status
- todo
- priority
- normal
- dueDate
- 2026-05-05
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/377" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/377"
);
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/377"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/377"
)
task = res.json() {
"id": 377,
"projectId": 45,
"assigneeUserId": 215,
"title": "Remove database query",
"description": "Consuasor conforto bellicus adsum conspergo animus templum tristis.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-05-05",
"createdAt": "2025-12-31T15:25:29.314Z",
"updatedAt": "2026-05-19T20:39:18.190Z"
}