Webhook

Why using the Webhook action?

With the Webhook action anybody in your organization can send data directly to popular services like Zapierarrow-up-right, N8Narrow-up-right, or Integromatarrow-up-right (now makearrow-up-right). This allow you to trigger complex workflow with your data.

What does it look like?

circle-info

This action is only compatible with Questions.

This action will a POST API call with your chart data.

Configuring Webhooks

In order to use the webhook action, all you need is a Webhook URL. Whaly will POST on this URL with a payload that looks like the following.

{
  "fields": {
    "<KEY>": {
      "name": "<KEY>",
      "label": "<Label>",
      "label_short": "<Label_Short>"
    }
  },
  "data": [
    {
      "<KEY>": {
        "value": 19147
      }
    }
  ]
}

Last updated

Was this helpful?