create_view
Create custom views in Zendesk by defining a title and conditions to filter and organize tickets based on specific criteria.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conditions | Yes | Conditions for the view | |
description | No | View description | |
title | Yes | View title |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"conditions": {
"additionalProperties": false,
"description": "Conditions for the view",
"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": "View description",
"type": "string"
},
"title": {
"description": "View title",
"type": "string"
}
},
"required": [
"title",
"conditions"
],
"type": "object"
}