copy-board
Duplicate a Miro board with customizable settings like name, description, and sharing policy. Assign the copied board to a specified team for collaboration.
Instructions
Create a copy of an existing Miro board with optional new settings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
copyFrom | Yes | Unique identifier (ID) of the board that you want to copy | |
description | No | Description for the new copied board | |
name | No | Name for the new copied board | |
sharingPolicy | No | Sharing policy for the new copied board | |
teamId | No | Team ID to assign the new copied board to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"copyFrom": {
"description": "Unique identifier (ID) of the board that you want to copy",
"type": "string"
},
"description": {
"description": "Description for the new copied board",
"type": "string"
},
"name": {
"description": "Name for the new copied board",
"type": "string"
},
"sharingPolicy": {
"description": "Sharing policy for the new copied board",
"enum": [
"private",
"view",
"comment",
"edit"
],
"type": "string"
},
"teamId": {
"description": "Team ID to assign the new copied board to",
"type": "string"
}
},
"required": [
"copyFrom"
],
"type": "object"
}