I am trying to setup a webhook for Continuum to post its ticket updates. They sent me the following about the payload they send and how they send it to the webhook:
We are passing the Content-Type as “application/x-www-form-urlencoded” in POST request.
Body of the HTTP message sent to the server as a long query string -- name/value pairs are separated by the ampersand (&), and names are separated from values by the equals symbol (=).
Header:-
Content-Type: application/x-www-form-urlencoded
Sample body:-
action=new&NOCTicketID=201811150000001&NOCTicketNotesID=123456
For GET there will be not body part, so no Content-Type. We will call the callback url and the data will be append to the url
Eg:- http://mycallbackurl?action=new&NOCTicketID=201811150000001&NOCTicketNotesID=123456
How can I configure the webhook to work with this?
Thanks,