formo boards command group manages dashboard boards for the active project. Boards are containers for charts.
formo boards list
List all boards for the project.
Requires
boards:read scope on your API key.Options
| Option | Type | Required | Description |
|---|---|---|---|
--page | number | ❌ | Page number, 1-indexed |
--size | number | ❌ | Page size |
formo boards get <boardId>
Get a single board by ID.
Requires
boards:read scope on your API key.formo boards create
Create a new dashboard board.
Requires
boards:write scope on your API key.Options
| Option | Type | Required | Description |
|---|---|---|---|
--title | string | ✅ | Board title |
--name | string | ❌ | Deprecated alias for --title |
--description | string | ❌ | Board description |
--is-public | boolean | ❌ | Whether the board is publicly viewable |
Examples
formo boards update <boardId>
Update an existing board. Provide at least one updatable option.
Requires
boards:write scope on your API key.Options
| Option | Type | Required | Description |
|---|---|---|---|
--title | string | ❌ | New board title |
--name | string | ❌ | Deprecated alias for --title |
--description | string | ❌ | New board description |
--is-public | boolean | ❌ | Whether the board is publicly viewable |
formo boards delete <boardId>
Delete a board.
Requires
boards:write scope on your API key.