Demo
We can update our inventory in Google Sheets when we receive new shipping updates from Gmail.
ChatGPT extracts the tracking number from the email.
๐จ Build pretty much anything
Minus offers a powerful set of nodes that can be used to build workflows. There are nodes for tons of common business tasks:
Tables & Spreadsheets
AI
Email
Messaging
Text Processing
APIs
Math
๐ Visual editor anyone can use
Building workflows is as easy as drag & drop. If you can draw a flowchart, you can build an automated workflow.
1. Drag & drop nodes
Each node represents a single task.
2. Draw connections
Connect nodes to define the flow of data.
3. Go live
Workflows are live in one click.
4. Monitor results
See the results of your workflows in real-time.
Connect your favorite apps
We're constantly working on new integrations, and we're always open to suggestions. If you don't see an integration you need, let us know ๐ง
Airtable
Gmail
Google Sheets
ChatGPT
Airtable
Gmail
Google Sheets
ChatGPT
Need more power?
โก
Never fear, write your own code! Minus has a Custom Code node that lets you write sandboxed JavaScript code to do anything you want.
Pro tip: Code can be piped into a node just like any other data. This means you can load code from a remote source, or even run code that AI generates on the fly!
1
2
3
4
5
6
7
8
9
10
11
/*
* This code let's us do things that aren't possible
* with other nodes.
*/
outputs.answer = inputs.numbers.reduce(
(acc, curr, i) => Math.pow(
acc,
i % 2 == 0 ? curr : -curr
)
)