{
"opencollection": "1.0.0",
"info": {
"name": "Miro Developer Platform AI Interaction Logs Items API",
"version": "v2.0"
},
"items": [
{
"info": {
"name": "Items",
"type": "folder"
},
"items": [
{
"info": {
"name": "Get items on board",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.miro.com/v2/boards/:board_id/items",
"params": [
{
"name": "limit",
"value": "",
"type": "query"
},
{
"name": "type",
"value": "",
"type": "query"
},
{
"name": "cursor",
"value": "",
"type": "query"
},
{
"name": "board_id",
"value": "",
"type": "path",
"description": "Unique identifier (ID) of the board for which you want to retrieve the list of available items."
}
]
},
"docs": "Retrieves a list of items for a specific board. You can retrieve all items on the board, a list of child items inside a parent item, or a list of specific types of items by specifying URL query parameter values.\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 "
},
{
"info": {
"name": "Get specific item on board",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.miro.com/v2/boards/:board_id/items/: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 item on a board.