{
"opencollection": "1.0.0",
"info": {
"name": "Miro Developer Platform AI Interaction Logs groups API",
"version": "v2.0"
},
"items": [
{
"info": {
"name": "groups",
"type": "folder"
},
"items": [
{
"info": {
"name": "Get all groups on a board",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.miro.com/v2/boards/:board_id/groups",
"params": [
{
"name": "board_id",
"value": "",
"type": "path",
"description": "Unique identifier (ID) of the board."
},
{
"name": "limit",
"value": "",
"type": "query",
"description": "The maximum number of items to return at one time, default is 10, maximum is 50."
},
{
"name": "cursor",
"value": "",
"type": "query"
}
]
},
"docs": "Returns all the groups and the items of the respective groups within a specific board.
This 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 "
},
{
"info": {
"name": "Create group",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://api.miro.com/v2/boards/:board_id/groups",
"params": [
{
"name": "board_id",
"value": "",
"type": "path"
}
],
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Creates a group of items on a board. The group is created with the items that are passed in the request body.