Homarr
Boards

Create a board

POST/api/boards

Create a board with base and mobile layouts. Requires board-create permission. Returns the board ID, name, and base layout ID; sets the creator's home board if none is selected.

ApiKey<token>

API key which can be obtained in the Homarr administration dashboard

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/api/boards" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "columnCount": 1,    "isPublic": true  }'
{  "boardId": "string",  "name": "string",  "layoutId": "string"}