How can I receive a JSON in a Webhook?

I am using an Api Voice software called Netelip, and there is an option to generate call reports that are sent to a URL (Webhook) in JSON format.

I need to know how to receive that information, since until now I have always captured information from the Webhook by variables sent in the URL.

Hey @victormiranda!

You will have to send a POST request to the Webhook URL. In the Webhook node, you will have to change the method from GET to POST. This way you will be able to send a JSON body to the Webhook.

Thanks You.