Certain API's require additional information in the webhook listener response. For example, I'm trying to subscribe to Outlook.com's push notification service, which describes the flow below:
"The Outlook notifications service tries to validate the notification URL with the listener service. It includes a validation token in the validation request.
If the listener service successfully validates the URL, it returns a success response within 5 seconds as follows:
Sets the content type in the response header to text\plain. Includes the same validation token in the response body. Returns an HTTP 200 response code. The listener can discard the validation token subsequently."
Zapier responds with the 200 response code, and catches the validation token in the webhook url, but how do I modify the HTTP response to include the validation token in its response to the POST event from Microsoft's notification service?