{ "opencollection": "1.0.0", "info": { "name": "Miro Developer Platform AI Interaction Logs Card items API", "version": "v2.0" }, "items": [ { "info": { "name": "Card items", "type": "folder" }, "items": [ { "info": { "name": "Create card item", "type": "http" }, "http": { "method": "POST", "url": "https://api.miro.com/v2/boards/:board_id/cards", "params": [ { "name": "board_id", "value": "", "type": "path", "description": "Unique identifier (ID) of the board where you want to create the item." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Adds a card item to a board

Required scope

boards:write

Rate limiting

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

Required scope

boards:read

Rate limiting

Level 1
" }, { "info": { "name": "Update card item", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.miro.com/v2/boards/:board_id/cards/:item_id", "params": [ { "name": "board_id", "value": "", "type": "path", "description": "Unique identifier (ID) of the board where you want to update the item." }, { "name": "item_id", "value": "", "type": "path", "description": "Unique identifier (ID) of the item that you want to update." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a card item 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 card item", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.miro.com/v2/boards/:board_id/cards/:item_id", "params": [ { "name": "board_id", "value": "", "type": "path", "description": "Unique identifier (ID) of the board from which you want to delete the item." }, { "name": "item_id", "value": "", "type": "path", "description": "Unique identifier (ID) of the item that you want to delete." } ] }, "docs": "Deletes a card item from the board.

Required scope

boards:write

Rate limiting

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