How do you capture the "issue updated" event on the New Issue View

Realized the event can be managed by configuring a webhook in JIRA and then setting up a handler in the app. Reference thread: Webhook never fires

However, I’m still stuck with the usage of AP.events where none of following triggers:
AP.events.on(‘jira:issue_updated’, function() {
console.log(“issue updated event fired”);
});
AP.events.onPublic(‘jira:issue_updated’, function() {
console.log(“issue updated public event fired”);
});

1 Like