Skip to main content

Tickets

New to webhooks? Start with Getting started (envelope, delivery, retries) and Verification (confirming a request came from Grow CRM). Those conventions apply to every event below and are not repeated here.
Tickets expose all five keys: ticket.created, ticket.updated, ticket.deleted, ticket.sundry, ticket.activity.

The ticket object

Every key except .deleted carries this shape, either flat (.created) or nested under ticket (.updated/.sundry):

ticket.created

Fires when a ticket is created. There is no clone event for tickets. data is the full ticket object above.

ticket.updated

Fires on a significant change. data.change tells you which; data.ticket is the full object.

ticket.sundry

Fires on a minor, cosmetic field edit. data.field names it; data.ticket is the full object (same shape as .updated, just a lower-significance discriminator).

ticket.activity

Fires when a child record on the ticket changes. Tickets only produce type: "reply" — tickets use a threaded reply system rather than the generic comments used by other resources.

ticket.deleted

Fires after the ticket is deleted. data is just the id — the record no longer exists to describe.