tasks / #115
- projectId
- projects/16
- assigneeUserId
- 179
- title
- Configure CI pipeline
- description
- Subseco delectatio crapula totus uredo adversus veritatis adimpleo conicio atqui.
- status
- in_progress
- priority
- high
- dueDate
- 2026-05-05
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/115" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/115"
);
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/115"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/115"
)
task = res.json() {
"id": 115,
"projectId": 16,
"assigneeUserId": 179,
"title": "Configure CI pipeline",
"description": "Subseco delectatio crapula totus uredo adversus veritatis adimpleo conicio atqui.",
"status": "in_progress",
"priority": "high",
"dueDate": "2026-05-05",
"createdAt": "2026-05-05T22:00:35.818Z",
"updatedAt": "2026-05-18T21:19:04.703Z"
}