The Woo Checkbox Webhook plugin allows you to control exactly which customer data fields are included in the webhook payload. This gives you full flexibility to send only the data you need to your automation platform (e.g. Zapier, Make, SureTriggers, or your custom endpoint).
How to Choose Which Data to Send
In your WordPress dashboard, go to: Woo Checkbox Webhook
Scroll to the section titled “Webhook Data To Send”. Here you’ll find a list of customer data fields that you can include in the webhook payload:
- First Name
- Last Name
- Phone
- Company
- Country
- Address 1
- Address 2
- City
- State
- Postcode
Check the boxes next to the fields you want to include.
Leave any fields unchecked that you don’t want to send.
Click Save Changes once you’ve made your selections.
Example Payload
If you enable all fields, a sample webhook payload might look like this:
{
"first_name": "Jane",
"last_name": "Smith",
"email": "jane@example.com",
"phone": "+1-555-987-6543",
"company": "Acme Corp",
"country": "US",
"address_1": "456 Market Street",
"address_2": "Suite 202",
"city": "Los Angeles",
"state": "CA",
"postcode": "90001"
}
Only the fields you’ve selected in the settings will appear in the payload.
Data Privacy Tip
Only collect the data you actually need. For example, if you’re just collecting emails for a newsletter list, you may only want to enable Email, First Name, and Last Name.
