update_view
Modify Zendesk ticket views by updating view ID, title, description, or conditions to streamline ticket organization and filtering.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conditions | No | Updated conditions | |
description | No | Updated view description | |
id | Yes | View ID to update | |
title | No | Updated view title |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"conditions": {
"additionalProperties": false,
"description": "Updated conditions",
"properties": {
"all": {
"items": {
"additionalProperties": false,
"properties": {
"field": {
"description": "Field to filter on",
"type": "string"
},
"operator": {
"description": "Operator for comparison",
"type": "string"
},
"value": {
"description": "Value to compare against"
}
},
"required": [
"field",
"operator"
],
"type": "object"
},
"type": "array"
},
"any": {
"items": {
"additionalProperties": false,
"properties": {
"field": {
"description": "Field to filter on",
"type": "string"
},
"operator": {
"description": "Operator for comparison",
"type": "string"
},
"value": {
"description": "Value to compare against"
}
},
"required": [
"field",
"operator"
],
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"description": {
"description": "Updated view description",
"type": "string"
},
"id": {
"description": "View ID to update",
"type": "number"
},
"title": {
"description": "Updated view title",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}