How to Send V2 Form Submissions to a Webhook
Use this guide when you want form submissions from a V2 site to be sent to an automation, CRM, or other webhook endpoint.
Before you start
Have the webhook URL ready. The endpoint must be publicly accessible and able to accept an HTTP POST with a JSON body.
How to add the webhook
- Open the V2 site in WordPress admin.
- In the left menu, go to OCF Plugin > Forms & Email.
- Select the Form Fields tab.
- Scroll down to Advanced Text & Integrations, then click Show.
- Scroll down to
booking_webhook_url. - Paste the URL that should receive form submission events.
- Click Save Changes.
Test the webhook
- Open the live site and submit a test form.
- Check the receiving app or webhook logs for the new request.
- Confirm the form data arrived as JSON.
The payload contains the fields submitted through the form, such as the customer name, email, phone number, selected services, address, description, and notes. The exact fields vary by form.
Troubleshooting
- Make sure the full webhook URL was pasted into
booking_webhook_urland the changes were saved. - Confirm the endpoint accepts
POSTrequests withContent-Type: application/json. - Submit another test from the live site and review the receiving app’s webhook history or logs.
- If the webhook still does not receive the request, contact support with the site URL and webhook provider name.
Updated on: 20/07/2026
Thank you!