tasks / #648
- projectId
- projects/78
- assigneeUserId
- 177
- title
- Optimize email notifications
- description
- Suadeo color teres credo degenero facilis facere.
- status
- in_progress
- priority
- low
- dueDate
- 2026-07-24
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/648" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/648"
);
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/648"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/648"
)
task = res.json() {
"id": 648,
"projectId": 78,
"assigneeUserId": 177,
"title": "Optimize email notifications",
"description": "Suadeo color teres credo degenero facilis facere.",
"status": "in_progress",
"priority": "low",
"dueDate": "2026-07-24",
"createdAt": "2025-08-04T09:05:23.640Z",
"updatedAt": "2025-11-09T17:32:09.573Z"
}