Skip to content
Glossary

Automation glossary

57 plain-language definitions for the terms behind no-code automation. Pick a term to read the long-form definition with real examples.

All terms

Browse the glossary

Action
An action is something Tiny Command does inside an external app as part of a workflow — send a message, create a record, update a row.
Read definition →
Agent
An AI agent is an LLM that can take actions in the world — not just generate text, but call tools, browse the web, and chain steps to complete tasks.
Read definition →
API
An API is the protocol two software systems use to talk to each other. Most automation work is API-to-API plumbing.
Read definition →
API key
An API key is a secret token that authenticates an app to an API — simpler than OAuth but with no granular permission control.
Read definition →
Automation
An automation is a saved set of steps that runs without manual input when a trigger condition is met.
Read definition →
Conditional Branching
Conditional branching runs different downstream steps based on the data — "if customer tier is enterprise, do X; else do Y".
Read definition →
Connector
A connector is a pre-built integration to a specific app — Slack connector, Stripe connector, HubSpot connector.
Read definition →
Cron
Cron is the syntax for scheduling recurring jobs — "every day at 9am", "every Monday", "the first of the month".
Read definition →
CSV
CSV (Comma-Separated Values) is the lowest-common-denominator data file format — spreadsheets exported as text.
Read definition →
DLQ
A DLQ (Dead-Letter Queue) is where failed messages go after exhausting retries — a holding pen for humans to investigate.
Read definition →
Dry Run
A dry run executes a workflow without actually performing the actions — useful for testing without sending real emails, charging real cards, or notifying real customers.
Read definition →
Embedding
An embedding is a numerical vector representation of text (or images, audio) that captures meaning — close vectors mean similar content.
Read definition →
Environment Variable
An environment variable is a configuration value (API key, URL, feature flag) set outside the workflow code — so the same code runs against different setups.
Read definition →
Error Handling
Error handling is what your workflow does when a step fails — retry, branch to alternate path, alert a human, or fail loudly.
Read definition →
Exponential Backoff
Exponential backoff is the standard retry strategy: wait 1s, then 2s, then 4s, then 8s — exponentially longer between retries.
Read definition →
GraphQL
GraphQL is an API query language where the client specifies exactly which fields it wants — alternative to REST.
Read definition →
Idempotency
Idempotency means running the same operation multiple times has the same effect as running it once — critical for safe retries.
Read definition →
Idempotency Key
An idempotency key is a unique ID you pass on writes so retrying the same request twice never creates two records.
Read definition →
Integration
An integration is the connection between two apps that lets them exchange data and trigger each other's behavior.
Read definition →
JSON
JSON (JavaScript Object Notation) is the data format almost every modern API uses to send and receive structured data.
Read definition →
JWT
A JWT (JSON Web Token) is a compact, signed token used to prove who you are or what you're allowed to do — common in modern API auth.
Read definition →
Latency
Latency is the time between a trigger event and the action completing — usually measured in seconds for automation workflows.
Read definition →
LLM
LLM (Large Language Model) is the kind of AI behind ChatGPT, Claude, and Gemini — trained on text to predict the next word.
Read definition →
Low-code
Low-code is software you build mostly with visual tools, with the option to drop into code where needed.
Read definition →
Low-Code vs No-Code
No-code means anyone can build it; low-code means you can drop into code when no-code doesn't cut it. Most modern automation tools blend both.
Read definition →
Field Mapping
Field mapping is connecting an output field from one step to an input field on the next — the data plumbing of every workflow.
Read definition →
Multi-Step Workflow
A multi-step workflow chains together multiple actions in sequence — the foundation of any real automation.
Read definition →
No-code
No-code is software you can build with visual tools alone — no programming required.
Read definition →
OAuth
OAuth is the open standard for granting one app limited access to your account on another app, without sharing your password.
Read definition →
OAuth Scopes
OAuth scopes are the granular permissions an app requests when you connect it — the difference between "read your email" and "send mail on your behalf".
Read definition →
Parallel Execution
Parallel execution runs multiple workflow steps simultaneously rather than sequentially — faster end-to-end when steps don't depend on each other.
Read definition →
Payload
The payload is the data content of an HTTP request or webhook — the JSON inside the request body.
Read definition →
Polling
Polling is when an automation platform repeatedly asks an API 'anything new?' on a schedule, used when the API doesn't expose webhooks.
Read definition →
Prompt
A prompt is the input text you send to an LLM — the instructions, context, and question that shape the response.
Read definition →
Prompt Injection
Prompt injection is when user-supplied text tries to override your system instructions to the LLM — the SQL injection of the AI era.
Read definition →
Queue
A queue is a buffer that holds messages or jobs until they can be processed — the backbone of resilient async systems.
Read definition →
RAG
RAG (Retrieval-Augmented Generation) is the technique of giving an LLM relevant context to ground its answer, instead of relying on its training knowledge alone.
Read definition →
Rate limit
A rate limit is a cap on how many API calls you can make per minute or hour, enforced by the API provider.
Read definition →
Rate Limiting
Rate limiting is when an API restricts how many requests you can make in a given time window — common to all production APIs.
Read definition →
REST API
A REST API exposes resources at URLs and uses HTTP verbs (GET, POST, PUT, DELETE) to read and modify them. The most common modern API style.
Read definition →
Retry
A retry is an automatic re-attempt of a failed step in a workflow, usually after a brief backoff.
Read definition →
SaaS
SaaS (Software as a Service) is the cloud-hosted software delivery model — log in via browser, pay monthly, no install required.
Read definition →
Sandbox
A sandbox is a test environment that mirrors production but isolates data — develop and test without affecting real customers.
Read definition →
Scenario
A scenario is Make's name for a single workflow — visual flow chart connecting triggers and actions.
Read definition →
Serverless
Serverless means code that runs on demand without you managing the server — the underlying infrastructure for most modern automation platforms.
Read definition →
SLA
Service Level Agreement — a documented uptime and performance commitment from a vendor to its customers.
Read definition →
Throttle
A throttle is a deliberate slowdown — capping how many requests per second you send to avoid rate-limiting or overwhelming a downstream system.
Read definition →
Tool Use
Tool use is the LLM capability of calling functions you define — the foundation of agents and structured workflows.
Read definition →
Transform
A transform is a step that reshapes data — splitting a name field, converting a date format, aggregating numbers.
Read definition →
Trigger
A trigger is the event that starts a workflow — a new email, a form submission, a database change, a schedule firing.
Read definition →
Upsert
Upsert (update + insert) is the operation: "find the record by some key; if it exists, update it; otherwise create it." The cleanest way to sync data idempotently.
Read definition →
Vector Store
A vector store is a database optimized for storing and searching by similarity rather than exact match — the foundation of semantic search and RAG.
Read definition →
Webhook
A webhook is an HTTP request sent by one system to another when an event happens — the foundation of real-time integrations.
Read definition →
Webhook Signature
A webhook signature is a cryptographic proof, included in webhook headers, that the payload truly came from the expected sender.
Read definition →
Workflow
A workflow is a saved chain of triggers and actions, executed by an automation platform when its trigger fires.
Read definition →
Zap
A Zap is Zapier's name for a single workflow — one trigger + one or more actions chained together.
Read definition →
Zapier Alternative
A Zapier alternative is any automation platform that competes with Zapier — typically Make, n8n, Tiny Command, or Workato.
Read definition →