kanban-boards / #110
- projectId
- projects/72
- name
- Release Tracker
- slug
- maggio-and-sons-mobile-app-v2-release-tracker
- createdAt
- updatedAt
Component variants
Medium
Release Tracker
#110
Small
kanban-boards/110 Related
References
curl -sS \
"https://example-data.com/api/v1/kanban-boards/110" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/kanban-boards/110"
);
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/110"
);
const kanbanBoard = (await res.json()) as KanbanBoard;import requests
res = requests.get(
"https://example-data.com/api/v1/kanban-boards/110"
)
kanban_board = res.json() {
"id": 110,
"projectId": 72,
"name": "Release Tracker",
"slug": "maggio-and-sons-mobile-app-v2-release-tracker",
"createdAt": "2025-10-11T02:37:39.789Z",
"updatedAt": "2026-05-18T16:44:31.488Z"
}