share-board
Share Miro boards with specific access levels and optionally assign them to teams. Define permissions like private, view, comment, or edit to control collaboration effectively.
Instructions
Share a Miro board with specific access level and optional team assignment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accessLevel | Yes | Access level for shared board | |
boardId | Yes | ID of the board to share | |
teamId | No | Team ID to assign the board to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accessLevel": {
"description": "Access level for shared board",
"enum": [
"private",
"view",
"comment",
"edit"
],
"type": "string"
},
"boardId": {
"description": "ID of the board to share",
"type": "string"
},
"teamId": {
"description": "Team ID to assign the board to",
"type": "string"
}
},
"required": [
"boardId",
"accessLevel"
],
"type": "object"
}