# Make

**What is Make?**

Make (formerly Integromat) is a powerful automation platform that enables you to connect various apps and automate workflows. In StackAI, the Make node allows you to trigger webhooks, sending data to your Make scenarios and integrating StackAI with thousands of other services.

***

**How to use it?**

The Make node in StackAI is primarily used to trigger a webhook in your Make scenario. This is useful for sending data from StackAI to Make, where you can further process, route, or automate actions across your connected apps.

***

**Example of Usage**

Suppose you want to send user data from StackAI to a Make scenario for further processing. You would use the Make node to trigger a webhook with the relevant data payload.

***

**Available Actions**

#### 1. Trigger Webhook

**Description:**\
Send a POST request to a Make webhook URL, optionally including a JSON payload. This action is commonly used to start a Make scenario from StackAI.

**Inputs**

* **Webhook URL** (Required)
  * The URL of your Make webhook.
  * Example: `https://hook.us2.make.com/qee6xwvm63a8jpctrgdnxgaj6hdd3v7q`
* **Body** (Optional)
  * The JSON data payload to send with the webhook request.
  * Example:

    ```json
    {
      "user_id": "12345",
      "event": "signup",
      "email": "user@example.com"
    }
    ```
* **Description** (Optional)
  * A human-readable description of the action being triggered.
  * Example: `"Send new user signup data to Make"`

**Configurations**

* **Webhook URL** (Required)
  * This is the only required configuration. It must be a valid Make webhook URL.
* **Description** (Optional)
  * Used for documentation or clarity within your workflow.

**Outputs**

* **Status** (Required)
  * Indicates if the webhook call was successful or failed.
  * Example: `"success"`
* **Message** (Required)
  * A descriptive message about the result of the webhook call.
  * Example: `"Webhook triggered successfully"`
* **Status Code** (Required)
  * The HTTP status code returned by the webhook endpoint.
  * Example: `200`
* **Response** (Optional)
  * The JSON response data returned by the webhook, if any.
  * Example:

    ```json
    {
      "result": "ok"
    }
    ```

***

**How to use it?**

1. Obtain your Make webhook URL from your Make scenario.
2. Add the Make node to your StackAI workflow.
3. Enter the webhook URL in the configuration.
4. (Optional) Add a JSON body to send data.
5. (Optional) Add a description for clarity.
6. Connect the node to trigger the webhook as part of your workflow.

***

**Example of Usage**

* **Scenario:** Send new user signup data to Make for further automation.
* **Webhook URL:** `https://hook.us2.make.com/qee6xwvm63a8jpctrgdnxgaj6hdd3v7q`
* **Body:**

  ```json
  {
    "user_id": "12345",
    "event": "signup",
    "email": "user@example.com"
  }
  ```
* **Description:** `"Send new user signup data to Make"`

**Expected Output:**

* Status: `"success"`
* Message: `"Webhook triggered successfully"`
* Status Code: `200`
* Response: (any data returned by your Make scenario)

***

Use the Make node in StackAI to seamlessly connect your AI workflows with the vast automation capabilities of Make, enabling powerful integrations and streamlined processes.


---

# Agent Instructions: 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:

```
GET https://docs.stackai.com/workflow-builder/apps/make.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
