Today you can only add a single webhook integration for a given form. We need to be able to send to multiple, at least 2. Is it possible to enable this?
You can do multiple network requests via our API connector feature as well! https://docs.feathery.io/platform/build-a-form/logic/api-connectors-advanced-logic
Here’s an example of an API connector in use: https://docs.feathery.io/platform/build-a-form/logic/api-connectors-advanced-logic/examples/custom-api-connections/prefill-fields-from-salesforce
Basically defining an API connector defines an allowed endpoint your logic rules can query (along with auth headers, etc.)
Then in your logic rule, you can call something like feathery.http.POST(<url>, <field data>) and have it trigger when you want it to (when a step is submitted, loaded, etc.)
