Make

Learn how to use the Make (Integromat) node in StackAI to trigger webhooks and automate workflows with detailed input, configuration, and output examples.

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:

      {
        "user_id": "12345",
        "event": "signup",
        "email": "[email protected]"
      }
  • 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:

      {
        "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:

    {
      "user_id": "12345",
      "event": "signup",
      "email": "[email protected]"
    }
  • 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.

Last updated

Was this helpful?