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 →
{
"nodes": [
{
"name": "Notion Trigger",
"type": "n8n-nodes-base.notionTrigger",
"position": [
270,
350
],
"parameters": {
"event": "pageAddedToDatabase",
"pollTimes": {
"item": [
{
"mode": "everyHour"
}
]
},
"databaseId": "6ea34c0d-67e8-4614-ad5c-68c665a34763"
},
"credentials": {
"notionApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "IF",
"type": "n8n-nodes-base.if",
"position": [
470,
350
],
"parameters": {
"conditions": {
"string": [
{
"value1": "={{$json[\"Team\"]}}",
"value2": "Marketing"
}
]
}
},
"typeVersion": 1
},
{
"name": "Mattermost",
"type": "n8n-nodes-base.mattermost",
"position": [
670,
250
],
"parameters": {
"message": "=New meeting notes were added.\nAgenda: {{$json[\"Agenda\"]}}\nDate: {{$json[\"Date\"][\"start\"]}}\nLink: https://notion.so/{{$json[\"id\"].replace(/-/g,'')}}",
"channelId": "64cae1bh6pggtcupfd4ztwby4r",
"attachments": [],
"otherOptions": {}
},
"credentials": {
"mattermostApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "NoOp",
"type": "n8n-nodes-base.noOp",
"position": [
668,
495
],
"parameters": {},
"typeVersion": 1
}
],
"connections": {
"IF": {
"main": [
[
{
"node": "Mattermost",
"type": "main",
"index": 0
}
],
[
{
"node": "NoOp",
"type": "main",
"index": 0
}
]
]
},
"Notion Trigger": {
"main": [
[
{
"node": "IF",
"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.
mattermostApinotionApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Mattermost Noop. Uses notionTrigger, mattermost, noOp. Event-driven trigger; 4 nodes.
Source: https://github.com/Zie619/n8n-workflows — 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.
Analyze Feedback Using Aws Comprehend And Send It To A Mattermost Channel. Uses mattermost, noOp, awsComprehend, typeformTrigger. Event-driven trigger; 5 nodes.
Analyze feedback and send a message on Mattermost. Uses typeformTrigger, googleCloudNaturalLanguage, mattermost. Event-driven trigger; 5 nodes.
Create A Channel Add A Member And Post A Message To The Channel On Mattermost. Uses manualTrigger, mattermost. Event-driven trigger; 4 nodes.
Create a channel, add a member, and post a message to the channel. Uses manualTrigger, mattermost. Event-driven trigger; 4 nodes.
Sample Error Workflow. Uses twilio, mattermost, errorTrigger. Event-driven trigger; 3 nodes.