kanban-boards / #19
- projectId
- projects/13
- name
- Backlog
- slug
- funk-renner-and-grady-data-pipeline-backlog
- createdAt
- updatedAt
Component variants
Medium
Backlog
#19
Small
kanban-boards/19 Related
References
curl -sS \
"https://example-data.com/api/v1/kanban-boards/19" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/kanban-boards/19"
);
const kanbanBoard = await res.json();import type { KanbanBoard } from "https://example-data.com/types/kanban-boards.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/kanban-boards/19"
);
const kanbanBoard = (await res.json()) as KanbanBoard;import requests
res = requests.get(
"https://example-data.com/api/v1/kanban-boards/19"
)
kanban_board = res.json() {
"id": 19,
"projectId": 13,
"name": "Backlog",
"slug": "funk-renner-and-grady-data-pipeline-backlog",
"createdAt": "2025-11-29T03:49:12.635Z",
"updatedAt": "2025-12-18T19:14:51.941Z"
}