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