get-group
Retrieve details about a specific group on a Miro board by providing the board ID and group ID. Access the necessary information for efficient board management.
Instructions
Retrieve information about a specific group on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | ID of the board that contains the group | |
groupId | Yes | ID of the group that you want to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"description": "ID of the board that contains the group",
"type": "string"
},
"groupId": {
"description": "ID of the group that you want to retrieve",
"type": "string"
}
},
"required": [
"boardId",
"groupId"
],
"type": "object"
}