update_macro
Modify Zendesk macros by updating title, description, and actions to streamline customer support workflows and maintain consistent ticket resolutions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actions | No | Updated actions | |
description | No | Updated macro description | |
id | Yes | Macro ID to update | |
title | No | Updated macro 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"
},
"description": {
"description": "Updated macro description",
"type": "string"
},
"id": {
"description": "Macro ID to update",
"type": "number"
},
"title": {
"description": "Updated macro title",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}