tasks / #45
- projectId
- projects/7
- assigneeUserId
- 249
- title
- Optimize performance metrics
- description
- Curia audio cunae ago thesaurus stipes.
- status
- blocked
- priority
- normal
- dueDate
- 2026-07-25
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/45" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/45"
);
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/45"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/45"
)
task = res.json() {
"id": 45,
"projectId": 7,
"assigneeUserId": 249,
"title": "Optimize performance metrics",
"description": "Curia audio cunae ago thesaurus stipes.",
"status": "blocked",
"priority": "normal",
"dueDate": "2026-07-25",
"createdAt": "2026-05-10T06:43:34.545Z",
"updatedAt": "2026-05-13T00:01:47.615Z"
}