Ninox Make integrationAutomate Ninox with Make.
What if every new Ninox record could start its own follow-up work? The Ninox Make integration gives you 16 modules: one instant trigger, 10 actions and 5 searches. This guide shows how to link your database, build a first scenario and pick the right module for each job.
Verified Trustpilot reviews · AI, automation & growth agency
What can the Ninox Make integration do for you?
The Ninox Make integration links your Ninox databases to Make, a no-code tool where you build a scenario: an automation made of modules, each one a brick that watches, searches or acts in one app. Ninox can alert Make the moment a record is created or updated, and Make can then read, write or file data back into your tables.
React when a record changes. Watch Record Events receives each created or updated record as a bundle, one item passed from module to module. From there, Create Record can open a matching entry in a follow-up table, or Update Record can stamp a status on another record.
Keep documents next to the data. Upload File To A Record attaches a file to the right record, List Files From Record tells you what is already attached, and Download File From Record hands a file to the next step when another app needs it.
Find the right record before acting. Look Up Record finds an entry from the details you already have, and List Database Table Records walks through a whole table, one bundle per record. Each module run on each bundle is one operation, the unit Make counts on your plan.
One limit comes from the Make documentation: Ninox can be slow to load data, and that delay can end in a timeout on the Ninox side. The Make troubleshooting guide covers how to read those errors. If you are still choosing a tool, the n8n vs Make comparison lays out the criteria, and Make training walks you through the editor from scratch.
How do you connect Ninox to Make?
- 01
Generate an API key in Ninox
Log in to Ninox, click the cog wheel in the top right corner and choose Zapier Integrations in the menu. Click Generate to get your API key, then copy it to your clipboard.
- 02
Open the connection dialog in Make
In your scenario, add any Ninox module and click Create a connection. A connection is your Ninox account linked to Make once, then reused by every Ninox module you add later.
- 03
Paste the key and confirm
Paste the API key into the dialog and click Continue. Make now lists the teams, databases and tables it can read, so you pick them from a menu instead of typing names by hand.
Your first scenario: log every new Ninox record in a follow-up table
GoalWhen a record is created in a Ninox table, Make creates a matching record in a follow-up table.
- 01
Start the scenario with the trigger
On the Scenarios page, create a new scenario and click the +. Search for Ninox, pick Watch Record Events and copy the webhook address Make gives you.
- 02
Wire the trigger inside Ninox
In Ninox, open the table to watch, click the cog wheel above it and choose Edit fields.... Open Trigger on create, switch to Text view, paste the code and replace the placeholder URL with your webhook address.
- 03
Choose the data Ninox sends
Still in the trigger field, pick the variables you want Make to receive from the menu on the left, then click OK. Only those values will reach the scenario.
- 04
Add Create Record
Back in Make, click the + on the right of the trigger and add Create Record. Choose the follow-up table and map the values that came from the trigger into its fields.
- 05
Test with Run once, then switch it on
Click Run once, then create a test record in Ninox. Check the bundles each module received. When the new entry shows up in the follow-up table, switch the scenario on.
What starts a Ninox scenario?
1 module starts a scenario when something happens in Ninox. A scheduled trigger is checked by Make on the scenario's schedule; an instant one is called by Ninox as soon as it happens.
Watch Record Events
Instant triggerIn Make“Receive events when records have been created or updated.”
Watch Record Events starts your scenario as soon as a record is created or updated in the Ninox table you chose, and passes along the values you picked in Ninox. You get one bundle per event, ready to map into the next module.
What else can Make do with Ninox?
Ninox gives you 15 modules in 2 groups. For each one: what it does for you, when to reach for it, and what to watch out for.
Modules index
Follow these steps to set up the trigger:
1 moduleOpen the table you want to watch for created and/or updated records.
Click on the cog-wheel above the table and select the Edit fields... option.
Now you can see the Trigger on create and Trigger after update fields. Click on one of the fields.
Switch from Visual view to Text view.
Go to Make and add the Watch Record Events module to your scenario.
Copy the provided webhook address.
Go back to the Ninox trigger settings and replace the https://paste-your-webhook-url.here with the copied webhook address.
Enter the data you want to send to the Make module (select variables from the menu on the left) and click the OK button.
Paste the following code to the field:
ActionIn the docs onlyThis entry is not a module you drag into a scenario. It is the step of the trigger setup where you paste the webhook code into the Ninox trigger field, so that Ninox knows where to send its events.
https://paste-your-webhook-url.here with your own address, or Make receives nothing.Other modules
14 modulesCreate Record
ActionIn Make“Creates a new record in a table.”
Create Record adds a new entry to the Ninox table you pick. Its fields are filled with values mapped from earlier modules, so a form answer, an order or a contact from another app becomes a proper row.
Delete File From Record
ActionIn Make“Deletes a file from a Ninox record.”
Delete File From Record removes one attached file from a Ninox record and leaves the record itself untouched. Handy for cleaning up a draft once the signed version has arrived.
Delete Record
ActionIn Make“Deletes a single record.”
Delete Record removes a single record from a table. It keeps Ninox tidy when a duplicate, a cancelled request or a test entry should disappear as part of the flow.
Download File From Record
ActionIn Make“Downloads a file attached to a record”
Download File From Record fetches a file attached to a Ninox record and passes its content to the next module. That is what lets another app store, send or read the document.
Get Record
ActionIn Make“Returns a single record given the ID of it.”
Get Record returns one Ninox record when you already know its ID, with all its values available for mapping. It is the direct route when an earlier step has handed you that ID.
Look Up Record
ActionIn Make“Returns a record based on the information you provide.”
Look Up Record finds a Ninox record from the information you give it, like an email address or a reference. You get back the entry you were looking for, with its ID ready for the next step.
Make an API Call
ActionIn Make“Performs an arbitrary authorized API call.”
Make an API Call lets you reach any endpoint of the Ninox API from your scenario, with the connection you already set up. It covers whatever the listed modules leave out.
Update Record
ActionIn Make“Updates a record.”
Update Record changes the values of an existing Ninox record, so a status, an amount or a date stays in sync with what happened elsewhere. Your team sees the new value without touching the database.
Upload File To A Record
ActionIn Make“Uploads files to a Ninox record.”
Upload File To A Record attaches a file to a Ninox record, so the document lives right next to the data it belongs to. Invoices, photos and signed forms land in the correct entry automatically.
List Databases
SearchIn Make“Lists all databases within a team.”
List Databases returns every database inside a Ninox team, one bundle per database. It gives you a clear view of what the connection can reach before you go further.
List Database Table Records
SearchIn Make“Lists all records of the specified table.”
List Database Table Records pulls all the records of the table you choose, each one arriving as its own bundle. It turns a whole Ninox table into material for the rest of the scenario.
List Database Tables
SearchIn Make“Lists all the tables in a database.”
List Database Tables shows every table in a Ninox database, one bundle each. It helps when a scenario must find its way through a database whose structure you do not want to hard-code.
List Files From Record
SearchIn Make“Lists files associated with the record. Does not download the file, just information about the files.”
List Files From Record tells you which files are attached to a record, without downloading any of them. You get their details, which is enough to decide what happens next.
List Teams
SearchIn Make“Lists all your teams.”
List Teams returns all the Ninox teams your account belongs to, one bundle per team. It is the first rung when a scenario needs to go from team to database to table on its own.
Need help automating Ninox with Make?
A person reads every message.