create-board-tool
Create a new Blipboard split-flap display board. Returns the display URL (open it on any screen — that IS the board, safe to share) and a secret pushToken used to push content later. No account needed.
Parameters2
| name | string | required | Human-readable board name, e.g. "Living Room". |
| layoutId | string | optional | Board grid: wide-frame = 6 rows x 22 columns, triptych-15 = 3 x 15, ticker-6 = 1 x 6. Immutable after creation. |
Raw schema
{
"type": "object",
"properties": {
"name": {
"description": "Human-readable board name, e.g. \"Living Room\".",
"type": "string"
},
"layoutId": {
"description": "Board grid: wide-frame = 6 rows x 22 columns, triptych-15 = 3 x 15, ticker-6 = 1 x 6. Immutable after creation.",
"default": "wide-frame",
"enum": [
"wide-frame",
"triptych-15",
"ticker-6"
],
"type": "string"
}
},
"required": [
"name"
]
}