Notion アイデア収集ツール
中級
これはContent Creation, Multimodal AI分野の自動化ワークフローで、9個のノードを含みます。主にCode, Slack, Notion, Webhook, Agentなどのノードを使用。 GPT-4o-mini、Notion、Slack通知を使ってアイデアをキャプチャーして処理
前提条件
- •Slack Bot Token または Webhook URL
- •Notion API Key
- •HTTP Webhookエンドポイント(n8nが自動生成)
- •OpenAI API Key
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"name": "Notion Ideas Collector",
"nodes": [
{
"id": "555579a1-2e02-4273-85d4-a2d456b1b083",
"name": "🌐 Webhook",
"type": "n8n-nodes-base.webhook",
"position": [
-240,
64
],
"parameters": {
"path": "webhook-path-here",
"options": {},
"httpMethod": "POST"
},
"typeVersion": 2.1
},
{
"id": "0ae8d1e6-0ba1-42d8-a477-f00434d0f449",
"name": "🤖 AIエージェント",
"type": "@n8n/n8n-nodes-langchain.agent",
"position": [
-16,
64
],
"parameters": {
"text": "={{ $json.body.text }}\nUser ID: {{ $json.body.user_id }}\n\nthis is the input based on the input you have to give \nTitle, tags, submitted by, created(Actual date in IST) {{ new Date().toISOString() }}",
"options": {},
"promptType": "define"
},
"typeVersion": 2.2
},
{
"id": "1a11f67b-58f0-4bab-9a39-24504216e038",
"name": "💬 OpenAI チャットモデル",
"type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
"position": [
64,
288
],
"parameters": {
"model": {
"__rl": true,
"mode": "list",
"value": "gpt-4o-mini"
},
"options": {}
},
"typeVersion": 1.2
},
{
"id": "e1a3b2c3-6853-4df0-8cd3-33f3f8c2a087",
"name": "🧑💻 コード",
"type": "n8n-nodes-base.code",
"position": [
336,
64
],
"parameters": {
"jsCode": "const items = $input.all();\n\nlet results = [];\n\nfor (const item of items) {\n const text = item.json.output;\n\n const titleMatch = text.match(/Title:\\s*(.+)/);\n const tagsMatch = text.match(/Tags:\\s*(.+)/);\n const submittedByMatch = text.match(/Submitted by:\\s*(.+)/);\n const createdMatch = text.match(/Created:\\s*(.+)/);\n\n results.push({\n json: {\n Title: titleMatch ? titleMatch[1].trim() : null,\n Tags: tagsMatch ? tagsMatch[1].split(\",\").map(tag => tag.trim()) : [],\n \"Submitted By\": submittedByMatch ? submittedByMatch[1].trim() : null,\n Created: createdMatch ? createdMatch[1].trim() : null\n }\n });\n}\n\nreturn results;"
},
"typeVersion": 2
},
{
"id": "a4d36c4d-8c78-405b-9465-ae05d5c7f54e",
"name": "📝 Notionに追加",
"type": "n8n-nodes-base.notion",
"position": [
560,
64
],
"parameters": {
"title": "={{ $json.Title }}",
"options": {},
"resource": "databasePage",
"databaseId": {
"__rl": true,
"mode": "list",
"value": "YOUR_NOTION_DATABASE_ID"
},
"propertiesUi": {
"propertyValues": [
{
"key": "Title|title",
"type": "title",
"title": "={{ $json.Title }}"
},
{
"key": "Submitted By|rich_text",
"type": "rich_text",
"textContent": "={{ $json['Submitted By'] }}"
},
{
"key": "Created|date",
"date": "={{ $json.Created.replace(' IST', '') }}",
"timezone": "Asia/Kolkata",
"includeTime": false
},
{
"key": "Tags|rich_text",
"textContent": "={{ $json.Tags.join(', ') }}"
}
]
}
},
"typeVersion": 2
},
{
"id": "94c0952d-7f0e-4be5-9041-6144d20fdd13",
"name": "✅ 確認送信 (Slack)",
"type": "n8n-nodes-base.slack",
"position": [
784,
64
],
"parameters": {
"text": "✅ Your idea has been added to our Product Ideas database!\n\n💡 *Idea:* {{ $json.Title }}",
"select": "channel",
"channelId": {
"__rl": true,
"mode": "name",
"value": "#general"
},
"otherOptions": {},
"authentication": "oAuth2"
},
"typeVersion": 2
},
{
"id": "37362989-2e8c-49aa-81ff-cee9ce44c8b8",
"name": "付箋",
"type": "n8n-nodes-base.stickyNote",
"position": [
-288,
-368
],
"parameters": {
"color": 5,
"width": 784,
"height": 800,
"content": "## 🛠️ Data Handling & Transformation\n\n*Input text comes in via Webhook ($json.body.text + user_id).\n\nAI Agent is instructed to output Title, Tags, Submitted By, and Created date in IST.\n\nThe Code node ensures clean extraction:\n\nTitle → Captures the idea title.\n\nTags → Splits into an array, trims spaces.\n\nSubmitted By → Extracts submitter name.\n\nCreated → Extracts and cleans up date (removes \"IST\" when storing).*"
},
"typeVersion": 1
},
{
"id": "0546d4fa-157a-49ba-93cb-95d34a2080c9",
"name": "付箋1",
"type": "n8n-nodes-base.stickyNote",
"position": [
512,
-368
],
"parameters": {
"color": 3,
"width": 192,
"height": 800,
"content": "## 🗂️ Database (Notion Integration)\n\n*Data is added into Notion (Ideas DB) with mapped properties:\n\nTitle → title property\n\nSubmitted By → rich text\n\nCreated → date (IST, but stored cleanly without \"IST\" suffix)\n\nTags → rich text (comma-separated list)*"
},
"typeVersion": 1
},
{
"id": "b044e4f5-7a4f-4bd5-9093-1785a1553bf4",
"name": "付箋2",
"type": "n8n-nodes-base.stickyNote",
"position": [
720,
-368
],
"parameters": {
"color": 4,
"width": 208,
"height": 800,
"content": "## 💬 Notifications\n\n*Once saved in Notion, the workflow notifies Slack with a friendly message:\n\nConfirms submission.\n\nEchoes back the submitted idea title.*"
},
"typeVersion": 1
}
],
"active": false,
"settings": {
"executionOrder": "v1"
},
"connections": {
"555579a1-2e02-4273-85d4-a2d456b1b083": {
"main": [
[
{
"node": "0ae8d1e6-0ba1-42d8-a477-f00434d0f449",
"type": "main",
"index": 0
}
]
]
},
"0ae8d1e6-0ba1-42d8-a477-f00434d0f449": {
"main": [
[
{
"node": "e1a3b2c3-6853-4df0-8cd3-33f3f8c2a087",
"type": "main",
"index": 0
}
]
]
},
"e1a3b2c3-6853-4df0-8cd3-33f3f8c2a087": {
"main": [
[
{
"node": "a4d36c4d-8c78-405b-9465-ae05d5c7f54e",
"type": "main",
"index": 0
}
]
]
},
"a4d36c4d-8c78-405b-9465-ae05d5c7f54e": {
"main": [
[
{
"node": "94c0952d-7f0e-4be5-9041-6144d20fdd13",
"type": "main",
"index": 0
}
]
]
},
"1a11f67b-58f0-4bab-9a39-24504216e038": {
"ai_languageModel": [
[
{
"node": "0ae8d1e6-0ba1-42d8-a477-f00434d0f449",
"type": "ai_languageModel",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級 - コンテンツ作成, マルチモーダルAI
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
GPT-4o-mini を使って Intercom メッセージを分類し、ClickUp または Slack にルーティング
GPT-4o-mini を使用してインターコム メッセージを分類し、ClickUp または Slack にルーティングする
If
Code
Slack
+
If
Code
Slack
14 ノードAvkash Kakdiya
AI要約
LeadFusion - AIリードエンリッチメントワークフロー
GPT-4oを活用したAIリードスコアリングとエンリッチメント(MailchimpからHubSpotおよびPipedriveへ)
If
Code
Hubspot
+
If
Code
Hubspot
13 ノードAvkash Kakdiya
コンテンツ作成
AI駆動型WordPressコンテンツワーキングフロー
OpenAIのGPTを使ってPostgreSQLからWordPressへのブログ投稿を自動化
If
Code
Postgres
+
If
Code
Postgres
12 ノードAvkash Kakdiya
コンテンツ作成
15 - LeadFlow オートメーション
OpenAI GPT-4O、HubSpot、Slack、Google Sheetsを使ってGmailのリードフォローアップを自動化
If
Set
Code
+
If
Set
Code
14 ノードAvkash Kakdiya
AI要約
09 - リードプロフィール強化ツール
自動化されたリード情報の豊富さとパーソナライズされたアウトレーシュ:HubSpot、Phantombuster、GPT
If
Set
Code
+
If
Set
Code
30 ノードAvkash Kakdiya
リードナーチャリング
Linear バグ自動ルーティング
GPT-4-miniによる分類を使用してLinearの Issue を自動のにルーティングする
If
Linear
Switch
+
If
Linear
Switch
17 ノードAvkash Kakdiya
コンテンツ作成
ワークフロー情報
難易度
中級
ノード数9
カテゴリー2
ノードタイプ7
作成者
Avkash Kakdiya
@itechnotion🚀 Founder of iTechNotion — we build custom AI-powered automation workflows for startups, agencies, and founders. 💡 Specializing in agentic AI systems, content automation, sales funnels, and digital workers. 🔧 14+ years in tech | Building scalable no-code/low-code solutions using n8n, OpenAI, and other API-first tools. 📬 Let’s automate what slows you down.
外部リンク
n8n.ioで表示 →
このワークフローを共有