kanban-boards / #123
- projectId
- projects/79
- name
- Release Tracker
- slug
- cormier-rogahn-and-bogisich-legacy-migration-release-tracker
- createdAt
- updatedAt
Component variants
Medium
Release Tracker
#123
Small
kanban-boards/123 Related
References
curl -sS \
"https://example-data.com/api/v1/kanban-boards/123" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/kanban-boards/123"
);
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/123"
);
const kanbanBoard = (await res.json()) as KanbanBoard;import requests
res = requests.get(
"https://example-data.com/api/v1/kanban-boards/123"
)
kanban_board = res.json() {
"id": 123,
"projectId": 79,
"name": "Release Tracker",
"slug": "cormier-rogahn-and-bogisich-legacy-migration-release-tracker",
"createdAt": "2026-01-22T19:46:44.402Z",
"updatedAt": "2026-02-28T19:12:08.037Z"
}