get-connectors
Retrieve all connectors on a Miro board by specifying its unique ID, with options for pagination and limiting results to streamline data retrieval.
Instructions
Retrieve all connectors on a specific Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board whose connectors you want to retrieve | |
cursor | No | Cursor for pagination | |
limit | No | Maximum number of connectors to return (default: 50) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"description": "Unique identifier (ID) of the board whose connectors you want to retrieve",
"type": "string"
},
"cursor": {
"description": "Cursor for pagination",
"type": "string"
},
"limit": {
"description": "Maximum number of connectors to return (default: 50)",
"type": "number"
}
},
"required": [
"boardId"
],
"type": "object"
}