get-organization-members
Retrieve and filter members of a Miro organization by role, license, active status, or email. Supports pagination for managing large datasets efficiently.
Instructions
Retrieves a list of members for an organization (Enterprise only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active | No | Filter by active status | |
cursor | No | Cursor for pagination | |
emails | No | Filter by comma-separated email addresses | |
license | No | Filter by license type | |
limit | No | Maximum number of results to return | |
orgId | Yes | id of the organization | |
role | No | Filter by user role |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"active": {
"description": "Filter by active status",
"type": "boolean"
},
"cursor": {
"description": "Cursor for pagination",
"type": "string"
},
"emails": {
"description": "Filter by comma-separated email addresses",
"type": "string"
},
"license": {
"description": "Filter by license type",
"enum": [
"full",
"occasional",
"free",
"free_restricted",
"full_trial",
"unknown"
],
"type": "string"
},
"limit": {
"description": "Maximum number of results to return",
"type": "number"
},
"orgId": {
"description": "id of the organization",
"type": "string"
},
"role": {
"description": "Filter by user role",
"enum": [
"organization_internal_admin",
"organization_internal_user",
"organization_external_user",
"organization_team_guest_user",
"unknown"
],
"type": "string"
}
},
"required": [
"orgId"
],
"type": "object"
}