create-board
Create a new Miro board by specifying a name, description, sharing policies, and team ID to organize collaborative workspaces effectively.
Instructions
Create a new Miro board with specified name and sharing policies
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Description of the board | |
name | Yes | Name of the board to create | |
sharingPolicy | No | Sharing policy for the board | |
teamId | No | Team ID to assign the board to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"description": "Description of the board",
"type": "string"
},
"name": {
"description": "Name of the board to create",
"type": "string"
},
"sharingPolicy": {
"description": "Sharing policy for the board",
"enum": [
"private",
"view",
"comment",
"edit"
],
"type": "string"
},
"teamId": {
"description": "Team ID to assign the board to",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}