kanban-boards / #85
- projectId
- projects/56
- name
- Backlog
- slug
- johns-reinger-and-toy-integration-hub-backlog
- createdAt
- updatedAt
Component variants
Medium
Backlog
#85
Small
kanban-boards/85 Related
References
curl -sS \
"https://example-data.com/api/v1/kanban-boards/85" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/kanban-boards/85"
);
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/85"
);
const kanbanBoard = (await res.json()) as KanbanBoard;import requests
res = requests.get(
"https://example-data.com/api/v1/kanban-boards/85"
)
kanban_board = res.json() {
"id": 85,
"projectId": 56,
"name": "Backlog",
"slug": "johns-reinger-and-toy-integration-hub-backlog",
"createdAt": "2025-11-01T15:27:49.227Z",
"updatedAt": "2025-12-21T22:07:24.561Z"
}