delete_view
Remove specific views in Zendesk by providing the View ID to streamline organization and maintain a clutter-free workspace.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | View ID to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "View ID to delete",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}