update_trigger
Modify existing Zendesk triggers by updating their title, description, conditions, or actions using the Zendesk API MCP Server for streamlined workflow automation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actions | No | Updated actions | |
conditions | No | Updated conditions | |
description | No | Updated trigger description | |
id | Yes | Trigger ID to update | |
title | No | Updated trigger title |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"actions": {
"description": "Updated actions",
"items": {
"additionalProperties": false,
"properties": {
"field": {
"description": "Field to modify",
"type": "string"
},
"value": {
"description": "Value to set"
}
},
"required": [
"field"
],
"type": "object"
},
"type": "array"
},
"conditions": {
"additionalProperties": false,
"description": "Updated conditions",
"properties": {
"all": {
"items": {
"additionalProperties": false,
"properties": {
"field": {
"description": "Field to check",
"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 check",
"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 trigger description",
"type": "string"
},
"id": {
"description": "Trigger ID to update",
"type": "number"
},
"title": {
"description": "Updated trigger title",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}