get-organization-member
Retrieve details of a specific organization member in Miro Enterprise using orgId and memberId to manage user information effectively.
Instructions
Retrieves information about a specific organization member (Enterprise only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memberId | Yes | id of the organization member | |
orgId | Yes | id of the organization |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"memberId": {
"description": "id of the organization member",
"type": "string"
},
"orgId": {
"description": "id of the organization",
"type": "string"
}
},
"required": [
"orgId",
"memberId"
],
"type": "object"
}