delete_tenant
Remove a tenant from the UseGrant MCP Server by specifying the tenant ID. This tool ensures efficient tenant management within the platform.
Instructions
Delete a tenant
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the tenant |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the tenant",
"minLength": 1,
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}