Update ticket
zendesk_update_ticketMUTATING: update an existing ticket. Provide the ticket id plus at least one field to change (status, priority, assignee_id, group_id, type, tags, or a comment). Zendesk REST: PUT /tickets/{id}.json.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Numeric ticket id (required). | |
| tags | No | Tags to set on the ticket (replaces existing). | |
| type | No | New type: problem | incident | question | task. | |
| status | No | New status: new | open | pending | hold | solved | closed. | |
| group_id | No | Group id to (re)assign to. | |
| priority | No | New priority: urgent | high | normal | low. | |
| assignee_id | No | Agent id to (re)assign to. | |
| comment_body | No | Body of a comment to add as part of this update. | |
| comment_public | No | Whether the added comment is public (default true; set false for an internal note). |