Wufoo · Schema

Wufoo Webhook Payload

Form-encoded payload POSTed to a subscriber URL when a form is submitted.

FormsForm BuilderSurveysData CollectionWebhooksPaymentsSurveyMonkey

Properties

Name Type Description
HandshakeKey string
FieldStructure string JSON-encoded field structure (when metadata=true).
FormStructure string JSON-encoded form structure (when metadata=true).
Fields string JSON-encoded array of submitted field values.
IP string
CreatedBy string
DateCreated string
EntryId string
View JSON Schema on GitHub

JSON Schema

wufoo-webhook-payload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/wufoo/json-schema/wufoo-webhook-payload-schema.json",
  "title": "Wufoo Webhook Payload",
  "description": "Form-encoded payload POSTed to a subscriber URL when a form is submitted.",
  "type": "object",
  "properties": {
    "HandshakeKey": { "type": "string" },
    "FieldStructure": { "type": "string", "description": "JSON-encoded field structure (when metadata=true)." },
    "FormStructure": { "type": "string", "description": "JSON-encoded form structure (when metadata=true)." },
    "Fields": { "type": "string", "description": "JSON-encoded array of submitted field values." },
    "IP": { "type": "string" },
    "CreatedBy": { "type": "string" },
    "DateCreated": { "type": "string", "format": "date-time" },
    "EntryId": { "type": "string" }
  }
}