Submitting data to webhook with new form component.

How do we submit data to a webhook using the new form component?

Previously we would nest our form within a vertical stack container with HTML Attributes set.

Is this still the proper way?

Please see my screenshot where I am attempting to follow this approach using the new form component.

When we click submit on our form, no data is submitted to webhook set at the vertical stack container level.

Page w/ Form: https://feed.presell.ai/squeeze/2/recv3gYlFYc1L0KHG/

We are working on the docs for this, but some quick answers for now

You don’t need the lowercase form element anymore, just the Form component

The component has an on finish interaction that you can use to submit the values to an HTTP integration.

When you’re creating the HTTP request, you can set the body to raw, and insert a dynamic value that references the form’s value state

Let me know if that helps!