FindPrompts
Sign InGet Started

Get the best new prompts every week

Join the FindPrompts newsletter — top prompts, fresh mastery guides, and AI workflow tips. Free, no spam.

FindPrompts

The largest AI prompts database. 30,000+ prompts for ChatGPT, Claude, Midjourney, and more.

Categories

  • Marketing
  • Business
  • Writing
  • Coding
  • Education

Platforms

  • ChatGPT
  • Claude
  • Gemini
  • Grok
  • Midjourney

Resources

  • Best AI Prompts
  • Free Tools
  • Prompt Grader
  • Prompt Templatizer
  • AI Token Counter
  • Image Prompt Generator
  • System Prompt Generator
  • Prompt A/B Tester
  • Prompt-to-JSON
  • Headline Generator
  • AI Cost Calculator
  • AI Prompt Improver
  • Prompt Generators
  • Mastery Guides
  • Cheatsheets
  • Automations
  • AI Tools
  • Custom GPTs
  • Blog
  • Affiliate Program

Company

  • Pricing
  • Contact
  • Terms of Service
  • Privacy Policy

© 2026 FindPrompts. All rights reserved.

TwitterGitHub
FindPrompts
FindPrompts

Main

Dashboard
Prompt Library30k+
DiscoverHot
LeaderboardNew
BundlesNew
Prompt Maker
PlaygroundBeta
GeneratorsNew
WorkflowsPro

Personal

Compare
Prompt Improver
Prompt Grader
Templatizer
Token Counter
Image Prompts
System Prompts
A/B Tester
All Free Tools
My Vault
Analytics
Submit Prompt
AI Tools
Guides
Cheatsheets
Automations
Settings
Go Pro

Unlock workflows, API access, and premium features.

Upgrade Now

User

Command Palette

Search for a command to run...

HomeAutomationsShopify Order to Sheets + Slack (Make)
MakeE-CommerceBeginner3 steps

Shopify Order to Sheets + Slack (Make)

A Make scenario that watches new Shopify orders, appends each to a Google Sheet, and posts a sale notification to Slack. Real-time visibility into every order across the team.

ShopifyGoogle SheetsSlack

How it works

  1. 1Trigger: watch new Shopify orders
  2. 2Module: add a row to Google Sheets
  3. 3Module: post a message to Slack

Setup

  • Create a Make scenario with the Shopify watch orders trigger.
  • Connect Google Sheets and Slack modules.
  • Map order fields to the sheet columns.
  • Set the scenario schedule (e.g. every 15 minutes).

Workflow JSON

{
  "version": "1.0",
  "platform": "make",
  "name": "Shopify Order to Sheets + Slack",
  "flow": [
    {
      "id": 1,
      "module": "shopify:watchOrders",
      "type": "trigger",
      "mapper": {
        "status": "any"
      }
    },
    {
      "id": 2,
      "module": "google-sheets:addRow",
      "type": "action",
      "mapper": {
        "spreadsheetId": "YOUR_SHEET_ID",
        "sheetName": "Orders",
        "values": {
          "OrderId": "{{1.id}}",
          "Customer": "{{1.customer.email}}",
          "Total": "{{1.total_price}}"
        }
      }
    },
    {
      "id": 3,
      "module": "slack:createMessage",
      "type": "action",
      "mapper": {
        "channel": "#sales",
        "text": "New order {{1.id}} for {{1.total_price}}"
      }
    }
  ]
}

Related Automations

Stripe Payment to Notion + Welcome Email

New payment? Create the customer in Notion and send a welcome email.

Abandoned Cart Recovery

Recover lost Shopify carts with a timed AI-personalized email.

Stripe Charge to QuickBooks Invoice

Auto-create a QuickBooks sales receipt for each Stripe charge.