Resources · Make integration

Azure AI Foundry Make integrationAutomate Azure AI Foundry with Make.

Put the models of your Azure AI Foundry project to work inside everyday workflows, without writing code. The Azure AI Foundry Make integration offers 4 action modules. This guide is for teams that already run a Foundry project: it connects your key and walks you through a first scenario.

Verified Trustpilot reviews · AI, automation & growth agency

What you can automate

What does the Azure AI Foundry Make integration do?

The Azure AI Foundry Make integration lets a Make scenario, the automation you build as a chain of modules, send text or documents to your Foundry project and use the answer in the next step. It has no trigger of its own, so another app or a schedule starts the flow, and Azure AI Foundry does the thinking in the middle.

Sort incoming requests before anyone reads them. A support form lands in another app, Create a Chat Completion (Azure AI) classifies the text, and the next module routes it to the right queue. Nobody triages by hand anymore.

Turn documents into data. A supplier file arrives, Analyze documents and get results reads it, and a chat completion extracts the pieces your finance team cares about. The results can then feed a table such as the one described on the Airtable Make integration page.

Summarize long text for a sales rep. Notes from a call go through Create a Chat Completion (Azure OpenAI) and come out as a short recap ready to post.

What Make does not give you here: no trigger, and only 4 listed modules. Make an API Call reaches the rest of the API with the same connection. Make's own documentation for this app also warns that it was generated with AI and may contain mistakes, so check anything important against the Azure documentation. If you are weighing another tool, the n8n vs Make comparison lays out the criteria, and the Make pricing page explains how operations are counted on each plan.

Connect

How do you connect Azure AI Foundry to Make?

  1. 01

    Collect your endpoint and key

    Open the Azure AI Foundry portal and pick your project. The endpoint URL sits in the Azure AI Services endpoint section of the Overview or Libraries page. The API key lives under Settings, in Keys and endpoints or Manage keys.

  2. 02

    Add a module and create the connection

    In your scenario, add any Azure AI Foundry module and click Create a connection. A connection is your Foundry account linked to Make once, then reused by every module of the app. The Connection name field is optional.

  3. 03

    Paste the credentials and save

    Paste the endpoint and the API key you copied, or follow the instructions Make shows on screen. Once saved, the connection appears in the module and you can fill in the rest of its fields.

First scenario

Your first scenario with Azure AI Foundry

GoalWhen a new document shows up in another app, Azure AI Foundry analyzes it and a chat completion writes a short summary.

  1. 01

    Create the scenario

    From the Scenarios page, create a new scenario and click the +. Pick the app that receives your documents as the first module, since Azure AI Foundry has no trigger.

  2. 02

    Add the analysis

    Click the + on the right, search Azure AI Foundry and choose Analyze documents and get results. Create the connection with your endpoint and key, then map the document from the first module.

  3. 03

    Ask for a summary

    Add Create a Chat Completion (Azure AI) after it. Map the analysis results into the message so the model summarizes what the document says in a few lines.

  4. 04

    Test with Run once

    Click Run once. Make executes the scenario a single time and shows the bundles, the items passed from one module to the next, so you can read the summary.

  5. 05

    Schedule and switch it on

    Open the clock on the first module. A new scenario runs every 15 minutes by default; keep that or change it, then switch the scenario on.

Modules

What each Azure AI Foundry module does

Azure AI Foundry gives you 4 modules. For each one: what it does for you, when to reach for it, and what to watch out for.

Azure AI Foundry1

Analyze documents and get results

Action

In MakeAnalyze documents and get results.

Hands a document to your Foundry project and brings back the analysis, so the rest of the scenario can work with what the file contains instead of the raw file.

When to use it
a contract or supplier file arrives in another app and you need its content in a structured step before a person looks at it.
Watch out
each document you send counts as one operation, the unit Make bills on your plan.
Azure AI Foundry2

Create a Chat Completion (Azure AI)

Action

In MakeExtract Information Classify Text Summarize Text

Sends a message to a model through Azure AI and returns its reply, which lets you extract information, classify text or summarize it in the middle of a flow.

When to use it
a ticket, an email or a form answer needs a label or a short recap before it moves to the next app.
Watch out
Make lists this module next to an Azure OpenAI version, so check in your project which service your model runs on.
Azure AI Foundry3

Create a Chat Completion (Azure OpenAI)

Action

In MakeExtract Information Classify Text Summarize Text

Does the same kind of job through Azure OpenAI: your text goes in, the model's answer comes out, ready to be mapped into the following module.

When to use it
your Foundry project serves its model through Azure OpenAI and you want a recap of call notes or the key facts pulled out of a long message.
Watch out
the two chat modules sit side by side in the module list with nearly the same name, so read the part in brackets before you map anything.
Azure AI Foundry4

Make an API Call

Action

In MakePerforms an arbitrary authorized API call.

Reaches any endpoint of the Azure AI Foundry API with the connection you already created, which covers everything the three dedicated modules leave out.

When to use it
you need a feature of your project that has no module of its own in Make.
Watch out
you build the request yourself here, so keep the Azure documentation open next to the editor while you set it up.
Need help

Need help automating Azure AI Foundry with Make?

A person reads every message.

FAQ

Azure AI Foundry and Make: common questions

01Is the Azure AI Foundry Make integration free?
Yes, on the Make side. Azure AI Foundry is a standard app, available from the Free plan. That plan allows 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. Paid plans lower the interval to 1 minute and remove the cap on active scenarios. Your Azure AI Foundry subscription is separate: its cost depends on your Azure account, and Make says nothing about it.
02What do you need to connect Azure AI Foundry to Make?
You need authorized access to an Azure AI Foundry account and a project. From the portal, copy two things: the endpoint URL shown in the Azure AI Services endpoint section of the Overview or Libraries page, and the API key found under Settings, in Keys and endpoints or Manage keys. In Make, add a module, click Create a connection, give it a name if you like, and paste both values.
03Does Azure AI Foundry trigger Make scenarios in real time?
No, because the app has no trigger module at all. The scenario starts from something else: the trigger of another app, such as a new file or a new form entry, or the schedule of the first module, which runs every 15 minutes by default on a new scenario. On the Free plan the shortest interval is 15 minutes; paid plans go down to 1 minute. Azure AI Foundry then acts as a step in the middle of the flow.
04What if the Azure AI Foundry module you need is missing in Make?
Use Make an API Call. It calls any endpoint of the Azure AI Foundry API with the connection you already created, so you are never limited to the 4 listed modules. Keep in mind that Make's documentation for this app says it was generated with AI and may contain mistakes, so verify the details that matter in the Azure documentation or with Azure directly before you rely on them in a live scenario.
05Should you use Make or n8n for Azure AI Foundry?
It depends on your criteria, not on a winner. On Make, the app offers 4 modules, one of them a generic API call, runs from the Free plan and needs only an endpoint and a key. If your team already works in n8n, check whether a node exists there for the same service and compare the setup on your own use case. Neither tool is ranked here: pick the one your team will actually maintain.