Every industry has its jargon. Automation is no exception. The problem is that the jargon exists partly because the concepts are genuinely technical — and partly because people use complex words to sound authoritative about simple things.
This post is an explainer for the uninitiated. My goal: by the end, you'll understand every term an automation consultant might throw at you, and you'll be able to hold your own in a conversation about how your systems work.
API — Application Programming Interface
An API is a way for two software systems to talk to each other. It's not a physical cable or a single thing — it's more like a waiter in a restaurant. You (your system) look at the menu (the API documentation), place an order (make a request), and the waiter (the API) goes to the kitchen (Amazon's servers) and brings back your food (data).
Every time you check your phone for package tracking, an API is involved. When your inventory tool syncs with Amazon, an API is how they communicate.
Webhook
A webhook is a way for one system to automatically notify another system when something happens — without that second system having to check repeatedly.
The difference between an API and a webhook: an API is a request — "tell me X." A webhook is a push — "something happened, here is X."
Think of it like a doorbell versus a guard checking a gate. With an API, your system rings Amazon's doorbell every 5 minutes asking "did anything happen?" With a webhook, Amazon rings your doorbell the moment something happens.
Trigger
A trigger is the event that starts an automation. It's the "when X happens" in "when X happens, do Y."
Every workflow has a trigger — something has to happen first to kick things off. A new order. A shipment confirmation. A customer message. A timer reaching a specific time.
Action
An action is what happens as a result of the trigger — the "do Y" in "when X happens, do Y." A workflow can have multiple actions in sequence.
Actions can be things like: send an email, update a spreadsheet, add a tag to a contact, generate a report, send a Slack message. Most automation platforms have hundreds of possible actions.
Workflow
A workflow is the complete sequence: trigger + all the steps + all the actions. It's the full automation from start to finish.
A simple workflow might be: "Trigger: new order in Amazon → Action: add row to Google Sheet." A complex workflow might have 30 steps, multiple conditions, and several branching paths.
Node
A node is a single step in a workflow. If a workflow is a recipe, each node is one ingredient or one action in the recipe.
In Make and n8n, workflows are visual — you see boxes connected by lines. Each box is a node. The lines show the data flowing from one step to the next.
Zap
A Zap is Zapier's term for a single automation — one trigger and one or more actions. It's essentially a workflow, but the word "Zap" is Zapier-specific. (Like how Google calls a search result "a result" but everyone else does too.)
SP-API
SP-API is Amazon's official programming interface — the way external tools connect to Amazon Seller Central. It's the only legitimate way to build production-grade integrations with Amazon's seller data.
Any serious automation for e-commerce businesses uses the SP-API. Tools that don't use SP-API are either using unofficial workarounds (which Amazon can disable at any time) or have limited functionality.
What All of This Means for Your Business
You don't need to understand the technical details of how APIs and webhooks work in order to benefit from automation. But understanding the vocabulary helps you:
- Ask better questions when evaluating automation partners
- Understand what you're being quoted for when someone proposes an automation build
- Troubleshoot problems when they arise
- Know whether someone is overselling you on complexity or being genuinely thorough
The one question to ask any automation consultant: "What triggers this workflow, and what happens if something goes wrong at each step?" If they can't answer both clearly, keep looking.
If any of this is still unclear, or if there's a term you encountered that wasn't covered here — reply to this post or reach out directly. This stuff shouldn't be mysterious.
Want to see what this looks like in your business?
Book a free 30-minute discovery call. We'll walk through your workflows without the jargon.
Book a Free Discovery Call →Continue reading: How to Automate Your Amazon Business in 2025: The Complete Workflow Guide — the practical implementation guide that follows from understanding these concepts.