The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "Notify New Orders in Slack",
"nodes": [
{
"parameters": {
"pollTimes": {
"item": [
{
"mode": "everyMinute"
}
]
},
"startingId": 1
},
"type": "n8n-nodes-prestashopadvanced.prestashopTrigger",
"typeVersion": 1,
"position": [
0,
0
],
"name": "New order created"
},
{
"parameters": {
"channel": "#sales",
"text": "=New order received!\nCustomer: {{$json.order.customer.firstname}} {{$json.order.customer.lastname}}\nTotal: {{$json.order.total_paid}}\nPayment: {{$json.order.payment}}"
},
"type": "n8n-nodes-base.slack",
"typeVersion": 1,
"position": [
240,
0
],
"name": "Notify sales channel"
},
{
"parameters": {
"conditions": {
"boolean": [],
"number": [
{
"value1": "={{$json.order.total_paid}}",
"operation": "larger",
"value2": 1000
}
],
"string": []
}
},
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [
460,
0
],
"name": "Check high-value order"
},
{
"parameters": {
"channel": "#finance",
"text": "=High-value order alert!\nCustomer: {{$json.order.customer.firstname}} {{$json.order.customer.lastname}}\nTotal: {{$json.order.total_paid}}\nPayment: {{$json.order.payment}}"
},
"type": "n8n-nodes-base.slack",
"typeVersion": 1,
"position": [
680,
-100
],
"name": "Notify finance team"
}
],
"connections": {
"New order created": {
"main": [
[
{
"node": "Notify sales channel",
"type": "main",
"index": 0
}
]
]
},
"Notify sales channel": {
"main": [
[
{
"node": "Check high-value order",
"type": "main",
"index": 0
}
]
]
},
"Check high-value order": {
"main": [
[
{
"node": "Notify finance team",
"type": "main",
"index": 0
}
],
[]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1"
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Notify New Orders in Slack. Uses n8n-nodes-prestashopadvanced, slack. Event-driven trigger; 4 nodes.
Source: https://github.com/prestaalba/n8n-nodes-prestashopadvanced/blob/0deaa5c2b1b21c6ea81f5c4591cd9098f3ff001b/examples/send-slack-msg-on-new-big-orders.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Observe any n8n workflow and post rich error alerts to Slack. Uses httpRequest, n8n-nodes-org21, slack. Event-driven trigger; 11 nodes.
Sends a Slack notification whenever a Trello card is moved between lists on a specific board. Message format (bolded parts): Get your API key here → Trello App Key On the same page, generate a Token (
> ⚠️ Multi-language Slack Error Notifier
error-notify. Uses errorTrigger, slack. Event-driven trigger; 4 nodes.
This workflow let's a bot in Slack notify a specific channel when a new product in WooCommerce is published and live on the site.