Integrations > Webhooks

Webhook Examples

Real object mapping examples for common webhook use cases, including quiz names, hardcoded values, form fields, timestamps, IPs, and nested data.

Overview

Reference configurations for object mapping, pulled from real webhooks.

Available fields depend on the webhook's event type

A webhook set up for Events carries different fields than one set up for Leads or Partial Leads. For example, formName and form only exist on lead payloads, while device, os, and browser only exist on event payloads. See the Webhooks API reference for the full payload schema of each type.

Need a field that isn't here?

Contact support@superfunnel.ai and we'll tell you whether it already exists under a different name or add it.

Examples

KeySourceValueNotes
Quiz NameParameterdata.formNameLead / Partial Lead only. Currently labeled "Form Name" in the field picker.
affiliate_idCustom Value## (String)Hardcoded, sent on every delivery.
last_name, postal_code, emailParameterdata.form.lastNameField.value, data.form.postalCodeField.value, data.form.emailField.value{field_id} is specific to your assets.
tf_certURLParameterdata.url
user_ipParameterdata.ipDefault value 10.10.10.10.
timestampParameterdata.createdOnEvent only. Type Date with format MM/dd/yyyy HH:mm:ss, timezone America/New_York.
timestamp_unixParameterdata.createdOnUnixEvent only. Unix milliseconds.
user_agentMapdevice_typedata.device, platformdata.os, browserdata.browserNests the three fields as one object under user_agent.
query_parseParameterdata.queryParamsPasses through the entire query parameter object, instead of mapping one parameter at a time.

What's Next