'Send response to 2 webhooks via CURL
We have a form on a website that currently uses Zapier Webhook to catch and push the information from the submitted form to our CRM.
How can I add another webhook to this form so when the form is submitted it hits both the endpoints?
Adding another step in the Zapier chain is not an option here.
Solution 1:[1]
Don’t depend on your form to synchronise requests, instead send the request to your API and have it process the subsequent requests to relevant APIs as required.
Let the form only capture and send the data to your API and let the API process the steps after, this way you reduce issues happening on client sides, you have more control processing the data yourself on the API.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Pavan |
