zammad_add_internal_note
Add internal notes to Zammad tickets that are visible to agents only, preventing accidental customer email delivery.
Instructions
Add an internal note to a Zammad ticket. Internal notes are visible to agents only and never delivered as email — this tool hard-codes type='note' and internal=true so you cannot accidentally send an email to the customer. If you need to send something to the customer, use zammad_create_shared_draft instead (and let a human send it manually from the Zammad UI).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | Body of the note. Format depends on content_type. For text/html: use plain HTML, nothing fancy needed (no signature, no quote block — this is an internal note). For text/plain: newlines are preserved. | |
| subject | No | Optional subject for the note. Most Zammad UIs render the body only; the subject is mostly for the article list. | |
| ticket_id | Yes | Zammad ticket ID (numeric, from URL: /#ticket/zoom/<id>). | |
| content_type | No | MIME type of the body. Default: text/html. | text/html |