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.
{
"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}}"
}
}
]
}