Webhooks

🔑 How to Create A Zigpoll Webhook

  • Log in to your Zigpoll dashboard.

  • Go to Integrations → Scroll down to Webhooks.

  • Create a new webhook by filling in the form.

Whenever a new response is submitted to the survey we will POST the data to your endpoint as valid JSON. See an example response below:

{
  type: 'submitted-responses',
  accountId: '',
  pollId: '',
  participantId: '',
  metadata: {},
  responses: {},
}

Last updated