get-project-member
Retrieve detailed information about a specific member within a Miro project by providing the organization, team, project, and member IDs.
Instructions
Retrieves information about a specific project member (Enterprise only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memberId | Yes | The ID of the member for which you want to retrieve information | |
orgId | Yes | The ID of the organization to which the project belongs | |
projectId | Yes | The ID of the project from which you want to retrieve specific member information | |
teamId | Yes | The ID of the team to which the project belongs |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"memberId": {
"description": "The ID of the member for which you want to retrieve information",
"type": "string"
},
"orgId": {
"description": "The ID of the organization to which the project belongs",
"type": "string"
},
"projectId": {
"description": "The ID of the project from which you want to retrieve specific member information",
"type": "string"
},
"teamId": {
"description": "The ID of the team to which the project belongs",
"type": "string"
}
},
"required": [
"orgId",
"teamId",
"projectId",
"memberId"
],
"type": "object"
}