Shopify New Order Slack Alert

High-Level Summary

This workflow sends a real-time Slack notification whenever a new order is placed in your Shopify store. It listens for the orders/create webhook event, extracts key order details (customer name, line items, total), and posts a clean, formatted message to a Slack channel of your choice. No more refreshing the Shopify dashboard or digging through emails — every sale gets an instant cha-ching in Slack.

Node-by-Node Walkthrough

  • New Shopify Order (Shopify Trigger — OAuth2) — Subscribes to the orders/create webhook on your Shopify store. When a new order is created, this node fires and passes the full order object downstream. Authentication uses OAuth2 (or a Shopify Admin API access token) configured in the n8n credential store.
  • Format Order (Code — No auth) — A JavaScript code node that extracts and transforms the raw order data. It builds a list of line items (- 2x Product Name), retrieves the customer's first and last name (falls back to "Guest"), and returns a clean JSON object containing orderNumber, customer, items, and total (with currency).
  • Post to Slack (Slack — OAuth2) — Sends a message to the specified Slack channel. The message uses n8n expressions to insert the formatted order data: a bold order number, total, customer name, and item list. The channel is set via a placeholder (REPLACE_WITH_CHANNEL) that you must replace with your actual Slack channel ID or name. Authentication uses OAuth2 with scopes like chat:write and channels:read.

Setup Instructions

  1. Shopify — You need a Shopify store with Admin API access. Create a custom app in your Shopify admin (Settings > Apps and sales channels > Develop apps). Grant it the read_orders scope, then generate an Admin API access token. In n8n, create a Shopify credential using OAuth2 or the access token.
  2. Slack — You need a Slack workspace where you have permission to create apps. Create a Slack app, enable OAuth2, and add the chat:write and channels:read scopes. Install the app to your workspace and copy the OAuth token. In n8n, create a Slack credential with that token.
  3. Replace the placeholder — In the Post to Slack node, change REPLACE_WITH_CHANNEL to the actual channel ID (e.g., C12345) or channel name (e.g., #sales).
  4. Activate the workflow — Once everything is connected, activate the workflow. Place a test order in your Shopify store (or use Shopify's webhook tester) to verify the alert appears in Slack.

Use Cases & Variations

  • Real-time sales tracking — Perfect for small teams or solo entrepreneurs who want to celebrate every order as it happens.
  • Multi-channel notifications — Add an email node (e.g., Gmail or SendGrid) to also send a receipt or summary to the store owner.
  • Order analytics — Insert a Google Sheets node after the trigger to log every order for later analysis.
  • Other Shopify events — Change the trigger topic to orders/updated, orders/cancelled, or fulfillments/create to monitor different stages of the order lifecycle.
  • Custom formatting — Modify the Code node to include shipping address, discount codes, or payment status.
6 nodesmanual triggerSales
Sticky NoteCodeSlack

Workflow JSON

{
  "name": "Shopify New Order Slack Alert",
  "nodes": [
    {
      "parameters": {
        "content": "## Shopify New Order Alerts in Slack\n\nFeel every sale as it happens - a clean cha-ching message in Slack with the order details, no email digging, no dashboard refreshing.\n\n**Setup time:** 10 minutes  ·  **Level:** Beginner\n\n**You'll need accounts/credentials for:** Shopify, Slack\n\n**Replace these before running:**\n- `REPLACE_WITH_CHANNEL`\n\n**Setup steps:**\n1. Connect your Shopify account in the trigger node (Admin API access token from a custom app).\n2. Connect Slack and choose your #sales channel.\n3. Activate the workflow, then place a test order (or use Shopify's webhook test) to see the alert.\n\nFree templates and updates: navkhan103.github.io",
        "height": 574,
        "width": 400,
        "color": 4
      },
      "id": "sticky-setup",
      "name": "Setup — read me first",
      "type": "n8n-nodes-base.stickyNote",
      "typeVersion": 1,
      "position": [
        -440,
        -40
      ]
    },
    {
      "parameters": {
        "content": "### How it runs\n\nStarts from **New Shopify Order**.\n\n1. A Shopify Trigger subscribes to the orders/create webhook on your store.\n2. A Code node formats the line items into a readable list.\n3. A Slack node posts the order summary - customer name, items, total, and order number - to your channel.",
        "height": 322,
        "width": 400,
        "color": 7
      },
      "id": "sticky-how",
      "name": "How it runs",
      "type": "n8n-nodes-base.stickyNote",
      "typeVersion": 1,
      "position": [
        -440,
        574
      ]
    },
    {
      "parameters": {
        "content": "### If something breaks\n\nThe read and AI nodes here **retry 3× automatically** (5s apart), which absorbs rate limits and brief timeouts.\n\nNodes that **send or write deliberately do not retry** — a send that reached the far end but lost its response would otherwise fire twice, so you'd get duplicate messages or duplicate rows.\n\nTo be told when one of those fails, build a workflow starting with an **Error Trigger** node that posts to Slack or email, then set it under **three-dot menu > Settings > Error Workflow**. Do it once and point every workflow at it.",
        "height": 400,
        "width": 400,
        "color": 3
      },
      "id": "sticky-fail",
      "name": "If something breaks",
      "type": "n8n-nodes-base.stickyNote",
      "typeVersion": 1,
      "position": [
        -440,
        936
      ]
// ... truncated (copy to see full JSON)

How to Import This Workflow

  1. 1Copy the workflow JSON above using the Copy Workflow JSON button.
  2. 2Open your n8n instance and go to Workflows.
  3. 3Click Import from JSON and paste the copied workflow.

Don't have an n8n instance? Start your free trial at n8nautomation.cloud

Related Templates

Lead Capture to Notion CRM with Alerts in Slack

Overview This workflow instantly captures leads from any web form (Webflow, Tally, WordPress, custom HTML, etc.) and creates a new entry in your Notion CRM database while simultaneously sending a formatted alert to a Slack sales channel. It eliminates manual data entry and ensures your sales team can respond to leads within seconds of submission — no Zapier subscription required. How It Works The workflow is triggered by an incoming HTTP POST request (the webhook), then processes the lead data through two sequential actions: first creating a Notion database page, then posting a Slack message. The webhook responds immediately with a 200 status so the form never hangs or times out. Node-by-Node Breakdown Lead Webhook (No auth) — Listens for incoming POST requests at the path . Accepts both JSON and form-encoded payloads. When activated, n8n provides a unique production URL that you point your form's action attribute or integration to. The node responds automatically with HTTP 200 after all downstream nodes complete. Add to Notion CRM (OAuth2) — Creates a new database page in your specified Notion database. Configured parameters: - : The Notion database ID (must be replaced with your actual database ID) - : Set dynamically to (the lead's name from the webhook payload) - : Maps the lead's email to the "Email" property and sets a "Status" select property to "New" - Requires sharing your Notion database with the n8n integration Alert Sales Channel (OAuth2) — Posts a formatted Slack message to a specified channel. Configured parameters: - : The Slack channel ID (must be replaced with your actual channel) - : A dynamic message template using expressions: - Uses Slack's markdown formatting for bold text and blockquotes Setup Instructions Prerequisites An n8n instance (self-hosted or cloud) A Notion account with a Leads database (must contain at least Name, Email, and Status properties) A Slack workspace where you can create/choose a channel for lead alerts A web form or service that can send POST requests (Webflow, Tally, WordPress, Framer, custom HTML form, etc.) Step-by-Step Activate the workflow in n8n and copy the production webhook URL from the Lead Webhook node (it will look like ) Configure your form to send a POST request to that URL with fields: , , and (JSON or form-encoded both work) Connect Notion: - Create an integration at https://www.notion.so/my-integrations - Share your Leads database with that integration - In n8n, create a Notion credential (OAuth2) and select your database - Replace with your actual database ID Connect Slack: - Create a Slack app with and scopes - Install the app to your workspace - In n8n, create a Slack credential (OAuth2) - Replace with your actual channel ID (e.g., ) Test: Submit a test lead through your form and verify it appears in Notion and Slack Use Cases & Adaptations Primary Use Cases Marketing teams: Capture leads from landing pages, webinar registrations, or content downloads Sales teams: Get instant notifications when high-value prospects submit inquiries Startups: Build a lightweight CRM without expensive tools Variations to Try Add email automation: Insert a Gmail or SendGrid node after Notion to send an auto-reply to the lead Enrich lead data: Add an HTTP Request node to look up company info via Clearbit or Hunter.io Score leads: Use an n8n Code node to assign lead scores based on message content or source Multi-channel capture: Create additional webhook nodes for different forms, each routing to the same Notion database Error handling: Build a separate Error Trigger workflow that posts to Slack when any node fails Required Replacements Before running, you must replace these placeholder values: → Your Notion database ID → Your Slack channel ID

6 nodes

Extract Google Maps Business Leads via Dumpling AI to Google Sheets

Overview This workflow automates the extraction of business listings from Google Maps using Dumpling AI's search-maps API and logs the results into a structured Google Sheet. It's ideal for lead generation, market research, or competitive analysis — allowing you to quickly gather data like business names, ratings, addresses, phone numbers, websites, and booking links without manual browsing. Workflow Steps Trigger: Manual Test Run (Manual Trigger) — Starts the workflow on demand for testing. No authentication required. Search Google Maps via Dumpling AI (HTTP Request) — Sends a POST request to with a JSON body containing the search query (e.g., ) and language. Authentication uses Header Auth — you must provide a Dumpling AI API key as a header (configured in n8n credentials). The response returns an array of places with details like title, rating, address, phone, website, price level, and booking links. Split Places List for Processing (Split Out) — Splits the array from the HTTP response into individual items so each place can be processed separately. No authentication needed. Save Results to Google Sheet (Place Info) (Google Sheets) — Appends each place's data (name, address, rating, price level, type, website, phone, position, booking link) to a specified sheet in a Google Sheets document. Uses OAuth2 authentication (Google account). The sheet name is set to "Google Maps" and the document ID points to a spreadsheet named "Places". Setup Instructions Dumpling AI Account: Sign up at dumplingai.com and obtain an API key. In n8n, create a new Header Auth credential with the key name (e.g., ) and value . Google Sheets: Create a Google Sheet (or use the one referenced in the workflow). In n8n, create a Google Sheets OAuth2 credential by connecting your Google account. Ensure the sheet has a tab named "Google Maps" (or update the sheet name in the node). Customize Query: Edit the of the HTTP Request node to change the search query (e.g., ) or language. Run: Click "Execute Workflow" to test. The first run will prompt you to authorize Google Sheets access. Use Cases & Variations Lead Generation: Replace the query with industry-specific terms (e.g., "dentists in Los Angeles") to build a targeted prospect list. Competitor Analysis: Search for competitors in a niche and analyze their ratings, price levels, and online presence. Real Estate / Local Business Research: Extract data for multiple locations by chaining queries or using a loop. Automation: Replace the Manual Trigger with a Schedule Trigger to run daily/weekly, and add a Set node to dynamically pass queries from a spreadsheet or webhook. Enrichment: Add nodes to clean data, send notifications (Slack/Email), or integrate with a CRM like HubSpot.

5 nodes

Ready to automate with n8n?

Get affordable managed n8n hosting with 24/7 support.