tickets_comment
Add comments to tickets with three modes: email reply sends to customer, public note visible on portal without email, private note hidden from customer. Requires subject and body.
Instructions
Add a comment to a ticket. Three comment modes: (1) Email reply: hidden=false, do_not_email=false sends email to customer. (2) Public note: hidden=false, do_not_email=true is visible on portal/invoice but no email sent. (3) Private note: hidden=true, do_not_email=true is tech-only and invisible to customer. Note: subject is REQUIRED or the API returns 422.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Ticket ID | |
| subject | Yes | Comment subject (REQUIRED - API returns 422 without it) | |
| body | Yes | Comment body (required) | |
| tech | No | Technician name | |
| hidden | No | If true, comment is hidden from customer (private note) | |
| sms_body | No | SMS body text | |
| do_not_email | No | If true, do not send email notification to customer |