> ## Documentation Index
> Fetch the complete documentation index at: https://nango-wari-migrated-bigcommerce-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Make

## Overview

<CardGroup cols={3}>
  <Card title="Pre-built tooling" icon="screwdriver-wrench" href="#pre-built-tooling" />

  <Card title="Pre-built integrations" icon="square-check" href="#pre-built-integrations" />

  <Card title="Access requirements" icon="triangle-exclamation" href="#access-requirements" />

  <Card title="Setup guide" icon="rocket" href="#setup-guide" />

  <Card title="Useful links" icon="circle-info" href="#useful-links" />

  <Card title="API gotchas" icon="biohazard" href="#api-gotchas" />
</CardGroup>

## Pre-built tooling

<AccordionGroup>
  <Accordion title="✅ Authorization">
    | Tools                             | Status |
    | --------------------------------- | ------ |
    | Pre-built authorization (API Key) | ✅      |
    | Pre-built authorization UI        | ✅      |
    | Custom authorization UI           | ✅      |
    | End-user authorization guide      | ✅      |
    | Expired credentials detection     | ✅      |
  </Accordion>

  <Accordion title="✅ Read & write data">
    | Tools                                     | Status                         |
    | ----------------------------------------- | ------------------------------ |
    | Pre-built integrations                    | ✅                              |
    | API unification                           | ✅                              |
    | 2-way sync                                | ✅                              |
    | Webhooks from Nango on data modifications | ✅                              |
    | Real-time webhooks from 3rd-party API     | 🚫 (time to contribute: \<48h) |
    | Proxy requests                            | ✅                              |
  </Accordion>

  <Accordion title="✅ Observability & data quality">
    | Tools                   | Status |
    | ----------------------- | ------ |
    | HTTP request logging    | ✅      |
    | End-to-end type safety  | ✅      |
    | Data runtime validation | ✅      |
    | OpenTelemetry export    | ✅      |
    | Slack alerts on errors  | ✅      |
    | Integration status API  | ✅      |
  </Accordion>

  <Accordion title="✅ Customization">
    | Tools                              | Status                         |
    | ---------------------------------- | ------------------------------ |
    | Create or customize use-cases      | ✅                              |
    | Pre-configured pagination          | 🚫 (time to contribute: \<48h) |
    | Pre-configured rate-limit handling | 🚫 (time to contribute: \<48h) |
    | Per-customer configurations        | ✅                              |
  </Accordion>
</AccordionGroup>

### Others

| Function name                  | Description                                                                             | Type                                           | Source code                                                                                                                       |
| ------------------------------ | --------------------------------------------------------------------------------------- | ---------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| `clone-scenario`               | Duplicate a scenario into the same or a different team.                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/clone-scenario.ts)               |
| `create-data-store-record`     | Create a new record in a data store.                                                    | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/create-data-store-record.ts)     |
| `create-data-store`            | Create a new data store                                                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/create-data-store.ts)            |
| `create-data-structure`        | Create a new data structure (schema) that data stores or scenarios can use.             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/create-data-structure.ts)        |
| `create-hook`                  | Create a new custom webhook.                                                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/create-hook.ts)                  |
| `create-scenario`              | Create a new scenario from a blueprint.                                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/create-scenario.ts)              |
| `create-team`                  | Create a new team within an organization.                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/create-team.ts)                  |
| `delete-data-store-records`    | Delete one or more records from a data store.                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/delete-data-store-records.ts)    |
| `delete-data-store`            | Delete one or more data stores from a team.                                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/delete-data-store.ts)            |
| `delete-hook`                  | Delete a webhook.                                                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/delete-hook.ts)                  |
| `delete-incomplete-executions` | Delete one or more incomplete executions for a scenario.                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/delete-incomplete-executions.ts) |
| `delete-scenario`              | Delete a scenario.                                                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/delete-scenario.ts)              |
| `disable-hook`                 | Disable a hook so it stops accepting incoming data.                                     | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/disable-hook.ts)                 |
| `enable-hook`                  | Enable a disabled hook to start accepting incoming data                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/enable-hook.ts)                  |
| `get-connection`               | Retrieve details of a single connection                                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/get-connection.ts)               |
| `get-data-store`               | Retrieve details of a single data store.                                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/get-data-store.ts)               |
| `get-data-structure`           | Retrieve details of a single data structure.                                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/get-data-structure.ts)           |
| `get-hook-incoming`            | Retrieve the full payload of a single queued webhook item.                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/get-hook-incoming.ts)            |
| `get-hook`                     | Retrieve details of a single hook.                                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/get-hook.ts)                     |
| `get-organization`             | Retrieve details of a single organization.                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/get-organization.ts)             |
| `get-scenario-blueprint`       | Retrieve the current blueprint (flow definition) of a scenario.                         | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/get-scenario-blueprint.ts)       |
| `get-scenario-execution`       | Retrieve the status and result of a single scenario execution.                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/get-scenario-execution.ts)       |
| `get-scenario-log`             | Retrieve a single execution log entry for a scenario.                                   | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/get-scenario-log.ts)             |
| `get-scenario-usage`           | Retrieve operations and data-transfer usage for a scenario.                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/get-scenario-usage.ts)           |
| `get-scenario`                 | Retrieve all properties of a single scenario.                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/get-scenario.ts)                 |
| `get-team`                     | Retrieve details of a single team.                                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/get-team.ts)                     |
| `learn-start-hook`             | Put a hook into learning mode to auto-detect the payload structure of the next request. | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/learn-start-hook.ts)             |
| `learn-stop-hook`              | Stop payload structure detection for a hook.                                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/learn-stop-hook.ts)              |
| `list-connections`             | List connections for a team.                                                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/list-connections.ts)             |
| `list-data-store-records`      | List records stored in a data store.                                                    | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/list-data-store-records.ts)      |
| `list-data-stores`             | List data stores for a team.                                                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/list-data-stores.ts)             |
| `list-data-structures`         | List data structures (schemas) for a team.                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/list-data-structures.ts)         |
| `list-hook-incomings`          | List queued webhook payloads waiting for processing by a scenario.                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/list-hook-incomings.ts)          |
| `list-hooks`                   | List webhooks/mailhooks for a team.                                                     | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/list-hooks.ts)                   |
| `list-incomplete-executions`   | List incomplete/failed executions (DLQ) for a scenario.                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/list-incomplete-executions.ts)   |
| `list-organizations`           | List organizations the API token's user is a member of.                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/list-organizations.ts)           |
| `list-scenario-logs`           | List execution and edit history log entries for a scenario.                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/list-scenario-logs.ts)           |
| `list-scenario-module-logs`    | List operation logs for a single module within a scenario.                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/list-scenario-module-logs.ts)    |
| `list-scenarios`               | List scenarios for a team or organization.                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/list-scenarios.ts)               |
| `list-teams`                   | List teams within an organization.                                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/list-teams.ts)                   |
| `ping-hook`                    | Check whether a hook is active and inspect its learned data structure.                  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/ping-hook.ts)                    |
| `run-scenario`                 | Manually execute an active scenario.                                                    | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/run-scenario.ts)                 |
| `start-scenario`               | Activate (turn on) a scenario so it can run on its schedule or trigger.                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/start-scenario.ts)               |
| `stop-scenario`                | Deactivate (turn off) a running scenario.                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/stop-scenario.ts)                |
| `test-connection`              | Verify that a connection's saved credentials are still valid.                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/test-connection.ts)              |
| `update-connection-name`       | Rename a connection.                                                                    | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/update-connection-name.ts)       |
| `update-data-store-record`     | Update a single record in a data store.                                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/update-data-store-record.ts)     |
| `update-data-store`            | Update a data store's name, structure, or size limit.                                   | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/update-data-store.ts)            |
| `update-data-structure`        | Update a data structure's name or field spec.                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/update-data-structure.ts)        |
| `update-hook`                  | Rename a hook.                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/update-hook.ts)                  |
| `update-scenario`              | Update a scenario's name, blueprint, or scheduling.                                     | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/update-scenario.ts)              |
| `update-team`                  | Update a team's name or operations limit.                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/actions/update-team.ts)                  |
| `connections`                  | Sync connections for a team.                                                            | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/syncs/connections.ts)                    |
| `data-store-records`           | Sync records inside each data store for a team.                                         | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/syncs/data-store-records.ts)             |
| `data-stores`                  | Sync data store metadata (not records) for a team.                                      | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/syncs/data-stores.ts)                    |
| `hooks`                        | Sync webhooks/mailhooks for a team                                                      | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/syncs/hooks.ts)                          |
| `incomplete-executions`        | Sync incomplete/failed executions (dead-letter queue) for each scenario in a team.      | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/syncs/incomplete-executions.ts)          |
| `organizations`                | Sync organizations the API token's user belongs to.                                     | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/syncs/organizations.ts)                  |
| `scenario-executions`          | Sync execution history (run logs) for each scenario in a team                           | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/syncs/scenario-executions.ts)            |
| `scenarios`                    | Sync scenarios for a team                                                               | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/syncs/scenarios.ts)                      |
| `teams`                        | Sync teams across accessible organizations.                                             | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/make/syncs/teams.ts)                          |

## Access requirements

| Pre-Requisites    | Status | Comment |
| ----------------- | ------ | ------- |
| Paid dev account  | ❓      |         |
| Paid test account | ❓      |         |
| Partnership       | ❓      |         |
| App review        | ❓      |         |
| Security audit    | ❓      |         |

## Setup guide

*No setup guide yet.*

<Tip>Need help getting started? Get help in the [community](https://nango.dev/slack).</Tip>

<Note>Contribute improvements to the setup guide by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/make.mdx)</Note>

## Useful links

* [How to generate an authentication token](https://www.make.com/en/api-documentation/authentication-token)
* [Make Authentication](https://www.make.com/en/api-documentation/authentication)
* [Make API-rate limiting](https://www.make.com/en/api-documentation/rate-limiting)
* [API docs](https://www.make.com/en/api-documentation)
  <Note>Contribute useful links by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/make.mdx)</Note>

## API gotchas

* When adding a new connection, you will also need to add your `environmentUrl`, this can be the link to your private instance of Make, for example, `development.make.cloud`, or the link to Make (with or without the zone, depending on a specific endpoint), for example, `eu1.make.com`. For more details, check [API structure](https://www.make.com/en/api-documentation/api-structure).

<Note>Contribute API gotchas by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/make.mdx)</Note>

## Going further

<Card title="Connect to Make" icon="link" href="/integrations/all/make/connect" horizontal>
  Guide to connect to Make using Nango Connect.
</Card>
