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

# Make

Connect Make to DoesQA so scenarios, schedules, and other apps can start a Run when your business process says it is time. Make’s HTTP module calls the [Universal Webhook](/platform/integrations/universal-webhook.md).

## Why use it

* Trigger DoesQA from the same automation that deploys, opens a ticket, or updates a sheet.
* Keep one CI/CD key and Flow selection model across Make and your pipelines.
* Hand results to Slack or Teams with [Notifications](/configuration/notifications.md) while Make continues the scenario.

## Before you start

1. Create an Active CI/CD webhook key under **Settings → CI/CD**. See [CI / CD](/configuration/ci-cd.md).
2. Copy your **Account ID** from Account Settings.
3. Store the key in Make as a connection secret or scenario variable.

## Add an HTTP module

1. Add an **HTTP → Make a request** module to your scenario.
2. Set **Method** to `POST`.
3. Set **URL** to:

```
https://app.does.qa/api/hook/ACCOUNT_ID?key=YOUR_KEY&withAll=smoke&label=make-scenario
```

4. Leave the body empty unless you prefer to send `key` as header `x-api-key` instead of a query parameter.
5. Run the module once to confirm DoesQA accepts the Run.

{% hint style="info" %}
**Pro tip:** Keep the default fast mode in Make so the scenario does not sit waiting on a long Run. Use [Notifications](/configuration/notifications.md) when the team needs the result in Slack or Teams.
{% endhint %}

### Select Flows and Values

Add the same query options as the [Universal Webhook](/platform/integrations/universal-webhook.md). URL-encode JSON `values` if you pass Value overrides, for example:

```
...&values=%7B%22BASE_URL%22%3A%22https%3A%2F%2Fstaging.example.com%22%7D
```

## Related

* [Integrations](/platform/integrations.md)
* [Universal Webhook](/platform/integrations/universal-webhook.md)
* [Zapier](/platform/integrations/zapier.md)
* [n8n](/platform/integrations/n8n.md)
* [CI / CD](/configuration/ci-cd.md)
* [Notifications](/configuration/notifications.md)
