Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions api/ticket/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,23 @@ Update

Required permission: ``ticket.agent`` **or** ``ticket.customer``

.. tip::

**🔕 Suppress notifications**

To update a ticket without triggering agent notifications (email and
in-app), add the following HTTP header to your request::

X-Zammad-Suppress-Notifications: true

This is useful for automated integrations that update tickets via
webhooks or triggers to avoid notification loops. The header is
available to **agents and admins only** — it is silently ignored

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't really get this. The header can be used by any third-party app/client. But notifications are only suppressed for agents and admins, right? Maybe phrase it like The header only affects admin and agent accounts and is ignored for customers? Just an idea.

for customers.

The header also works on the ``POST /api/v1/ticket_articles``
endpoint and the GraphQL ``ticketUpdate`` mutation.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Currently, we don't have GraphQL mentioned at all in the docs. This is just related to the new stack, right? Maybe we could omit this part, if it's ok from your side?


``PUT``-Request sent: ``/api/v1/tickets/{ticket id}``

.. code-block:: json
Expand Down
Loading