tasks / #24
- projectId
- projects/3
- assigneeUserId
- 226
- title
- Add CI pipeline
- description
- Cognomen agnosco aspicio corroboro.
- status
- in_review
- priority
- normal
- dueDate
- 2026-04-28
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/24" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/24"
);
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/24"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/24"
)
task = res.json() {
"id": 24,
"projectId": 3,
"assigneeUserId": 226,
"title": "Add CI pipeline",
"description": "Cognomen agnosco aspicio corroboro.",
"status": "in_review",
"priority": "normal",
"dueDate": "2026-04-28",
"createdAt": "2025-06-02T04:54:55.009Z",
"updatedAt": "2026-05-21T04:13:14.927Z"
}