tasks / #152
- projectId
- projects/20
- assigneeUserId
- 123
- title
- Remove data validation
- description
- Turba arca virgo aetas tergiversatio amplitudo contigo deprecator demitto canis.
- status
- in_progress
- priority
- low
- dueDate
- 2026-06-29
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/152" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/152"
);
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/152"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/152"
)
task = res.json() {
"id": 152,
"projectId": 20,
"assigneeUserId": 123,
"title": "Remove data validation",
"description": "Turba arca virgo aetas tergiversatio amplitudo contigo deprecator demitto canis.",
"status": "in_progress",
"priority": "low",
"dueDate": "2026-06-29",
"createdAt": "2026-02-25T09:45:39.071Z",
"updatedAt": "2026-03-13T19:29:21.090Z"
}