I’m using external events in my app and when I make a request to app’s generated URL (for example: hooks.freshworks.com/123) I receive the following response:
{
“success”: true
}
I would like to change it. For example: if I create a new ticket on external events method, I would like to send the ticket object as a response.
I’m working with external events, so I need to create a URL first (using generateTargetUrl function). So after that I make a request to that URL. So my onExternalEvent function will be called. At this moment I would like to return another data. The FDK only returns the following JSON:
{
“success”: true
}
And I would like to return another information on it.
Please let me know if you need more information about it.