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 →
{
"id": "188",
"name": "Send a message on Mattermost when an order is created in WooCommerce",
"nodes": [
{
"name": "WooCommerce Trigger",
"type": "n8n-nodes-base.wooCommerceTrigger",
"position": [
550,
260
],
"parameters": {
"event": "order.created"
},
"credentials": {
"wooCommerceApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Mattermost",
"type": "n8n-nodes-base.mattermost",
"position": [
750,
260
],
"parameters": {
"message": "={{$node[\"WooCommerce Trigger\"].json[\"billing\"][\"first_name\"]}} bought {{$node[\"WooCommerce Trigger\"].json[\"line_items\"][0][\"name\"]}}!",
"channelId": "pj1p95ebei8g3ro5p84kxxuuio",
"attachments": [],
"otherOptions": {}
},
"credentials": {
"mattermostApi": "<your credential>"
},
"typeVersion": 1
}
],
"active": false,
"settings": {},
"connections": {
"WooCommerce Trigger": {
"main": [
[
{
"node": "Mattermost",
"type": "main",
"index": 0
}
]
]
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
mattermostApiwooCommerceApi
About this workflow
Send a message on Mattermost when an order is created in WooCommerce. Uses wooCommerceTrigger, mattermost. Event-driven trigger; 2 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →