create-connector
Establish visual connections between items on a Miro board by defining start and end points, with customizable style configurations.
Instructions
Create a new connector between items on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board where the connector will be created | |
endItem | Yes | End item of the connector | |
startItem | Yes | Start item of the connector | |
style | No | Style configuration of the connector |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"description": "Unique identifier (ID) of the board where the connector will be created",
"type": "string"
},
"endItem": {
"additionalProperties": false,
"description": "End item of the connector",
"properties": {
"id": {
"description": "ID of the item at the end of the connector",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"startItem": {
"additionalProperties": false,
"description": "Start item of the connector",
"properties": {
"id": {
"description": "ID of the item at the start of the connector",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"style": {
"additionalProperties": false,
"description": "Style configuration of the connector",
"properties": {
"endStrokeCap": {
"description": "End stroke cap style",
"type": "string"
},
"startStrokeCap": {
"description": "Start stroke cap style",
"type": "string"
},
"strokeColor": {
"description": "Color of the connector stroke",
"type": "string"
},
"strokeStyle": {
"description": "Style of the connector stroke (normal, dashed, etc.)",
"type": "string"
},
"strokeWidth": {
"description": "Width of the connector stroke",
"type": "number"
}
},
"type": "object"
}
},
"required": [
"boardId",
"startItem",
"endItem"
],
"type": "object"
}