Resources · Make integration

Coze Make integrationAutomate Coze with Make.

Can Make feed messages to a Coze assistant and pull its answers back out? The Coze Make integration gives you 5 modules: 3 actions and 2 searches. This guide is for teams that already build bots in Coze. It shows how to link your account, then walks through a first working scenario.

Verified Trustpilot reviews · AI, automation & growth agency

What you can automate

What can the Coze Make integration do for you?

The Coze Make integration lets a Make scenario talk to your Coze conversations and assistants. A scenario is the automation you build in Make, a chain of modules. A module is one brick of that chain. Coze brings 5 of them: you can post a message, read what an assistant wrote, look up a conversation and send back tool results.

Put incoming requests in front of your bot. A request lands in another app, and Create a Message adds it to a Coze conversation. The item that travels between modules is called a bundle: here, one request.

Collect what the assistant said. Message an Assistant lists the messages of an assistant, so a later module can store them or pass them on. Search Conversation fetches the details of a conversation when you already hold its ID.

Close the loop on tools. When your Coze setup relies on a tool that runs outside Coze, Submit a Tool Outputs hands the result back. Anything the list does not cover goes through Make an API Call, on the same connection.

One honest limit: Make's own documentation for Coze is marked as limited, for lack of public information. Test every module on real data before you rely on it. The Make troubleshooting guide helps when a run fails, and n8n vs Make puts the two tools side by side. If you are new to the editor, Make training covers the basics.

Connect

How do you connect Coze to Make?

  1. 01

    Open the connection window

    Add any Coze module to your scenario and click Create a connection. A connection is your Coze account linked to Make once, then reused by every Coze module you add afterwards.

  2. 02

    Give it a name you will recognize

    Naming the connection is optional, but a good habit. If several workspaces or clients end up in the same Make account, a clear name saves you from picking the wrong one later.

  3. 03

    Authorize Make and save

    Follow what the window asks: either approve Make on the Coze page that opens, or paste the key Coze gives you. Then click Save. Make reuses this connection from now on.

First scenario

Your first scenario with Coze and Make

GoalWhen a new request arrives in another app, Make posts it to a Coze conversation, then reads the assistant's messages.

  1. 01

    Create the scenario

    On the Scenarios page, create a new scenario and click the +. Coze has no trigger, so pick the trigger of the app where requests arrive, such as your form or help desk tool.

  2. 02

    Add Create a Message

    Click the + to the right of that first module, search for Coze and choose Create a Message. Create your connection, then map the request text from the previous module into the message.

  3. 03

    Read the assistant's messages

    Add Message an Assistant after it. As a search, it can return zero, one or several bundles, so plan what the next step does with each of them.

  4. 04

    Test with Run once

    Click Run once and send a test request. Then read the bundles each module received and confirm the message reached the right conversation.

  5. 05

    Schedule and switch it on

    Set the schedule on the first module. A new scenario checks every 15 minutes by default, which is also the shortest interval on the Free plan. Then switch the scenario on.

Modules

What each Coze module does

Coze gives you 5 modules. For each one: what it does for you, when to reach for it, and what to watch out for.

Coze1

Create a Message

Action

In MakeCreates a message and adds it to the specified conversation.

This module drops a new message into a Coze conversation you pick, so your bot sees content that started life in another tool.

When to use it
a customer question arrives by form or email and should reach the same Coze thread as earlier exchanges.
Watch out
it adds a message but does not read anything back; pair it with a search module when the reply matters.
Coze2

Make an API Call

Action

In MakePerforms an arbitrary authorized API call.

Here you reach any endpoint of the Coze API from your scenario, reusing the connection you already set up, without a second login.

When to use it
you need a Coze feature that none of the four other modules offers.
Watch out
Make's Coze documentation is limited, so it will not describe the request for you: build it carefully and test it with Run once first.
Coze3

Submit a Tool Outputs

Action

In MakeSubmits the results of tool execution.

Once a tool has run outside Coze, this action sends its result back so the conversation can carry on with that answer in hand.

When to use it
your Coze setup waits on a lookup that Make performs in another app, for example a stock check in your inventory tool.
Watch out
the module only returns results; producing them is the job of the modules placed before it.
Coze4

Message an Assistant

Search

In MakeLists messages from an assistant.

Think of it as the reading side of the integration: it lists the messages written by an assistant, ready for the next module to store or forward.

When to use it
you want each answer your bot gave to land in a spreadsheet, a CRM note or a team chat.
Watch out
a search can return zero, one or many bundles, and each bundle costs an operation in the modules that follow.
Coze5

Search Conversation

Search

In MakeViews the conversation information by conversation ID.

Give it a conversation ID and it returns what Coze knows about that conversation, so later steps work from verified details rather than guesses.

When to use it
you stored a conversation ID earlier, in a sheet or a CRM record, and now need that conversation's details again.
Watch out
it looks up one known ID; it does not browse or filter your conversations for you.
Need help

Need help automating Coze with Make?

A person reads every message.

FAQ

Coze and Make: common questions

01Is the Coze Make integration free?
Yes, Coze is a standard app in Make, so its modules are available from the Free plan. That plan has its own limits: 2 active scenarios, at least 15 minutes between two scheduled runs, 5 minutes of execution per run, files up to 5 MB and 512 MB of data transfer. Every module execution on a bundle counts as one operation against your plan. Paid plans lift the active scenario cap and allow runs as often as every minute. Any cost on the Coze side is separate and not covered here.
02What do you need to connect Coze to Make?
A Coze account and a Make account. Make's documentation lists no specific prerequisite for Coze and gives no official connection steps, because its Coze page is marked as limited. The generic path applies: add a Coze module, click Create a connection, optionally name it, authorize Make on the Coze page or paste the key Coze provides, then click Save. The connection is then reused by every Coze module in your scenarios, so you only do this once per account.
03Can Coze start a Make scenario in real time?
No, not directly: Coze has no trigger module in Make, neither scheduled nor instant. A scenario that uses Coze starts from something else. It can be the trigger of another app, for instance a new form entry, or simply the schedule you set on the first module, every 15 minutes by default. On the Free plan, 15 minutes is also the shortest gap between two scheduled runs; paid plans go down to one minute. The Coze modules then act or search once the scenario is running.
04What if the Coze module you need is missing in Make?
Use Make an API Call. It calls any endpoint of the Coze API with the connection you already created, so you are not limited to the 5 listed modules. Keep in mind that Make's documentation for Coze is flagged as limited, for lack of public information about the app. You build the request yourself, from what Coze documents on its side, and test it with Run once before switching anything on. Read the bundle the module returns to confirm the call did what you expected.
05Should you use Make or n8n for Coze?
It depends on how you prefer to build. Make offers 5 ready modules for Coze, 3 actions and 2 searches, plus Make an API Call for anything else, in a visual editor where each run is counted in operations. n8n often has a node for the same app, so check whether one exists for Coze and which operations it covers before choosing. Compare the two on the exact Coze actions your scenario needs, not on general impressions: the tool that already covers those steps is the easier one to maintain.