remove_user_from_organization
Remove a user from an organization by specifying the user ID and organization ID, enabling precise user management within the Binalyze AIR MCP Server.
Instructions
Remove a user from an organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
organizationId | Yes | The ID of the organization to remove the user from | |
userId | Yes | The ID of the user to remove from the organization |
Input Schema (JSON Schema)
{
"properties": {
"organizationId": {
"description": "The ID of the organization to remove the user from",
"type": "string"
},
"userId": {
"description": "The ID of the user to remove from the organization",
"type": "string"
}
},
"required": [
"organizationId",
"userId"
],
"type": "object"
}