{ "opencollection": "1.0.0", "info": { "name": "Miro Developer Platform AI Interaction Logs Connectors API", "version": "v2.0" }, "items": [ { "info": { "name": "Connectors", "type": "folder" }, "items": [ { "info": { "name": "Get connectors", "type": "http" }, "http": { "method": "GET", "url": "https://api.miro.com/v2/boards/:board_id/connectors", "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "cursor", "value": "", "type": "query" }, { "name": "board_id", "value": "", "type": "path", "description": "Unique identifier (ID) of the board from which you want to retrieve a list of connectors." } ] }, "docs": "Retrieves a list of connectors for a specific board.\n\nThis method returns results using a cursor-based approach. A cursor-paginated method returns a portion of the total set of results based on the limit specified and a cursor that points to the next portion of the results. To retrieve the next portion of the collection, on your next call to the same method, set the `cursor` parameter equal to the `cursor` value you received in the response of the previous request. For example, if you set the `l" }, { "info": { "name": "Create connector", "type": "http" }, "http": { "method": "POST", "url": "https://api.miro.com/v2/boards/:board_id/connectors", "params": [ { "name": "board_id", "value": "", "type": "path", "description": "Unique identifier (ID) of the board for which you want to create the connector." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Adds a connector to a board.

Required scope

boards:write

Rate limiting

Level 2
" }, { "info": { "name": "Get specific connector", "type": "http" }, "http": { "method": "GET", "url": "https://api.miro.com/v2/boards/:board_id/connectors/:connector_id", "params": [ { "name": "board_id", "value": "", "type": "path", "description": "Unique identifier (ID) of the board from which you want to retrieve a specific connector." }, { "name": "connector_id", "value": "", "type": "path", "description": "Unique identifier (ID) of the connector that you want to retrieve." } ] }, "docs": "Retrieves information for a specific connector on a board.

Required scope

boards:read

Rate limiting

Level 1
" }, { "info": { "name": "Update connector", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.miro.com/v2/boards/:board_id/connectors/:connector_id", "params": [ { "name": "board_id", "value": "", "type": "path", "description": "Unique identifier (ID) of the board for which you want to update the connector." }, { "name": "connector_id", "value": "", "type": "path", "description": "Unique identifier (ID) of the connector that you want to update." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a connector on a board based on the data and style properties provided in the request body.

Required scope

boards:write

Rate limiting

Level 2
" }, { "info": { "name": "Delete connector", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.miro.com/v2/boards/:board_id/connectors/:connector_id", "params": [ { "name": "board_id", "value": "", "type": "path", "description": "Unique identifier (ID) of the board from which you want to delete the connector." }, { "name": "connector_id", "value": "", "type": "path", "description": "Unique identifier (ID) of the connector that you want to delete." } ] }, "docs": "Deletes the specified connector from the board.

Required scope

boards:write

Rate limiting

Level 3
" } ] } ], "bundled": true }