> For the complete documentation index, see [llms.txt](https://docs.zigpoll.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zigpoll.com/integrations/make.md).

# Make

Automate survey workflows with Make (formerly Integromat)

Connect Zigpoll to thousands of apps using [Make](https://www.make.com/en/integrations/zigpoll) — a powerful visual automation platform. Build multi-step scenarios that trigger when survey responses come in, with no code required.

#### What You Can Do

* Send survey responses to Google Sheets for reporting and analysis
* Trigger Slack or email alerts when key feedback is received
* Tag customers in your CRM or marketing platform based on their answers
* Kick off review requests, support tickets, or product feedback loops automatically
* Filter, parse, and route response data based on your specific needs

#### Step #1: Get Your Zigpoll API Key

{% hint style="warning" %}
Make connects through the Zigpoll API, which requires the **Premium** plan or higher.
{% endhint %}

1. Log into your Zigpoll dashboard.
2. Go to **Integrations** and open the **API Keys** card.
3. Click **New API Key** and give it the label "Make" so you know what it's for.
4. Click **Create API Key** and copy the key.

#### Step #2: Create Your Make Scenario

1. Log in to your [Make](https://www.make.com) account.
2. Create a new scenario, click **+** and search for **Zigpoll**.
3. Connect your Zigpoll account using the API key from Step #1.
4. Create a webhook and select a Survey for that hook.
5. Add your automation steps (Google Sheets, Slack, CRM, etc.).
6. Activate your scenario and watch the data flow!

{% hint style="info" %}
Each survey-response payload includes the answers (keyed by question handle), survey metadata, and — when the respondent provides them — their **email** and **phone number** (phone in E.164 format, e.g. `+14155551234`). Map the `phone` field to trigger SMS follow-ups in a downstream module.
{% endhint %}

{% hint style="info" %}
Make allows you to build multi-step scenarios that include conditional logic, scheduling, data formatting, and more. If you can imagine the workflow, you can build it in Make.
{% endhint %}

#### Endpoints (for custom HTTP modules)

The Zigpoll app in Make handles these for you. If you build the connection yourself with an HTTP module, all requests go to `https://v1.zigpoll.com` with your API key in the `Authorization` header:

| Method   | Path                                        | Purpose                                                                                          |
| -------- | ------------------------------------------- | ------------------------------------------------------------------------------------------------ |
| `POST`   | `/make/hooks`                               | Subscribe a webhook. Body: `{ "targetUrl": "<your Make webhook URL>", "pollId": "<survey id>" }` |
| `DELETE` | `/make/hooks/:hookId`                       | Remove the subscription                                                                          |
| `GET`    | `/make/survey-responses?pollId=<survey id>` | Fetch a sample response to map fields                                                            |
| `GET`    | `/polls`                                    | List your surveys, to find a survey id                                                           |

For every other endpoint, see the [API reference](/web-api.md).

For more details, visit the [Zigpoll integration page on Make](https://www.make.com/en/integrations/zigpoll).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.zigpoll.com/integrations/make.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
