Hi, am trying to get notes data of a ticket whenever a new note is added to it, for that am using ticket.submitClick Event, but am ended up with "Invalid Event" error.
This is my code.
var eventCallback = function (event)
{
console.log(event)
};
client.events.on("ticket.onSubmitClick", eventCallback);