Get notify when a ticket is closed

1 Comments

  • Greg Katechis
    Zendesk Developer Advocacy

    Hi Alon! We have event connector that works with Amazon EventBridge that will get you what you want. Specifically, you'll want to use status change ticket event, which doesn't allow you to listen for a specific event (in your situation, ticket moving to solved), but you could check the response payload for something like this:

    {
    ...
    "detail": {
    ...
    "type"
    : "Status Changed",

    "previous": "open",

    "current": "solved",
    ...
    }
    }

    Let us know if you have any other questions!

    0

Please sign in to leave a comment.

Powered by Zendesk