Do more with your form data with webhooks

Back to What's New

Jul 02, 2021

You can now send Clive form submission data to one or more destinations whenever a form is submitted with webhooks. Use webhooks to POST form submission JSON in real time to third-party apps and services.

Webhook form submission data includes the submission date and time, the form values submitted, and information about the form itself and the visitor. Example:


{
  "formSubmission": {
    "id": "123",
    "context": {
      "time": "2021-07-07T15:16:32.897Z",
      "url": "https://www.example.com/contact-us.html",
      "geolocation": {
        "ip": "12.34.56.78",
        "state": "GA",
        "coordinates": {
          "latitude": 33.7893,
          "longitude": -84.3737
        },
        "city": "Atlanta",
        "country": "US"
      }
    },
    "applicationUrl": "https://app.clive.cloud/accounts/9999/submissions/123",
    "fieldValues": {
      "Name": [
        "Rose Gardener"
      ],
      "Email": [
        "rose.gardener@example.com"
      ]
    }
  },
  "form": {
    "id": "345",
    "name": "Contact Us",
    "applicationUrl": "https://app.clive.cloud/accounts/9999/forms/345"
  },
  "visitor": {
    "id": "678",
    "name": "Rose Gardener",
    "applicationUrl": "https://app.clive.cloud/accounts/9999/visitors/678"
  }
}

Webhooks are currently available for Enterprise account plans. Learn more about webhooks in our knowledge base.

Categories

Forms
Integrations