delete_organization
Remove an organization from Zendesk by specifying its ID using this tool on the Zendesk API MCP Server, streamlining organization management tasks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Organization ID to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Organization ID to delete",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}