kanban-boards / #80
- projectId
- projects/53
- name
- Main Board
- slug
- ratke-kub-customer-portal-main-board
- createdAt
- updatedAt
Component variants
Medium
Main Board
#80
Small
kanban-boards/80 Related
References
curl -sS \
"https://example-data.com/api/v1/kanban-boards/80" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/kanban-boards/80"
);
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/80"
);
const kanbanBoard = (await res.json()) as KanbanBoard;import requests
res = requests.get(
"https://example-data.com/api/v1/kanban-boards/80"
)
kanban_board = res.json() {
"id": 80,
"projectId": 53,
"name": "Main Board",
"slug": "ratke-kub-customer-portal-main-board",
"createdAt": "2025-07-29T11:07:31.781Z",
"updatedAt": "2026-03-23T08:33:01.024Z"
}