kanban-boards / #121
- projectId
- projects/78
- name
- Release Tracker
- slug
- cormier-rogahn-and-bogisich-payment-gateway-release-tracker
- createdAt
- updatedAt
Component variants
Medium
Release Tracker
#121
Small
kanban-boards/121 Related
References
curl -sS \
"https://example-data.com/api/v1/kanban-boards/121" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/kanban-boards/121"
);
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/121"
);
const kanbanBoard = (await res.json()) as KanbanBoard;import requests
res = requests.get(
"https://example-data.com/api/v1/kanban-boards/121"
)
kanban_board = res.json() {
"id": 121,
"projectId": 78,
"name": "Release Tracker",
"slug": "cormier-rogahn-and-bogisich-payment-gateway-release-tracker",
"createdAt": "2026-03-06T04:09:44.954Z",
"updatedAt": "2026-03-11T05:30:49.060Z"
}