kanban-boards / #106
- projectId
- projects/69
- name
- Release Tracker
- slug
- prohaska-wiza-security-audit-release-tracker
- createdAt
- updatedAt
Component variants
Medium
Release Tracker
#106
Small
kanban-boards/106 Related
References
curl -sS \
"https://example-data.com/api/v1/kanban-boards/106" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/kanban-boards/106"
);
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/106"
);
const kanbanBoard = (await res.json()) as KanbanBoard;import requests
res = requests.get(
"https://example-data.com/api/v1/kanban-boards/106"
)
kanban_board = res.json() {
"id": 106,
"projectId": 69,
"name": "Release Tracker",
"slug": "prohaska-wiza-security-audit-release-tracker",
"createdAt": "2026-05-13T15:54:07.166Z",
"updatedAt": "2026-05-17T11:21:34.320Z"
}