delete_membership
Remove a specific membership by its unique ID from Webex using the MCP server. This tool ensures targeted deletion of memberships to manage access and participation effectively.
Instructions
Delete a membership by ID in Webex.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
membershipId | Yes | The unique identifier for the membership to be deleted. |
Input Schema (JSON Schema)
{
"properties": {
"membershipId": {
"description": "The unique identifier for the membership to be deleted.",
"type": "string"
}
},
"required": [
"membershipId"
],
"type": "object"
}