diff --git a/.gitignore b/.gitignore
index 66ca72dd5..8807e554a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,3 +12,4 @@ yarn.lock
venv
env
site
+__pycache__/
diff --git a/_overrides/404.html b/_overrides/404.html
index 6b71012db..3ce3b1035 100644
--- a/_overrides/404.html
+++ b/_overrides/404.html
@@ -6,38 +6,9 @@
-
+
+
+
+
+
{% endblock %}
@@ -147,4 +151,6 @@ https://plausible.io/docs/script-extensions?ref=ryansechrest.com#all-our-script-
plausible("Video: Ended", { props: { page: pagePath, video: videoPath } });
}
+
+
{% endblock %}
diff --git a/_overrides/partials/footer.html b/_overrides/partials/footer.html
new file mode 100644
index 000000000..0e9ec2ad0
--- /dev/null
+++ b/_overrides/partials/footer.html
@@ -0,0 +1,61 @@
+
diff --git a/_snippets/code/tournament-notes.md b/_snippets/code/tournament-notes.md
index a1fc1407c..b9e131241 100644
--- a/_snippets/code/tournament-notes.md
+++ b/_snippets/code/tournament-notes.md
@@ -2,5 +2,5 @@
If you have issues with expressions in 1.9.0:
* Please report the issue on the [forums](https://community.n8n.io/){:target=_blank .external-link}.
-* Self-hosted users can switch back to RiotTmpl: set `N8N_EXPRESSION_EVALUATOR` to `tmpl`. Refer to [Environment variables](/hosting/configuration/) for more information on configuring self-hosted n8n.
+* Self-hosted users can switch back to RiotTmpl: set `N8N_EXPRESSION_EVALUATOR` to `tmpl`. Refer to [Environment variables](/hosting/configuration/environment-variables/) for more information on configuring self-hosted n8n.
///
diff --git a/_snippets/integrations/builtin/core-nodes/code-node.md b/_snippets/integrations/builtin/core-nodes/code-node.md
index e9a7795cd..9475427de 100644
--- a/_snippets/integrations/builtin/core-nodes/code-node.md
+++ b/_snippets/integrations/builtin/core-nodes/code-node.md
@@ -39,7 +39,7 @@ The Code node supports:
### External libraries
-If you self-host n8n, you can import and use built-in and external npm modules in the Code node. To learn how to enable external modules, refer the [Configuration](/hosting/configuration/#use-built-in-and-external-modules-in-the-code-node) guide.
+If you self-host n8n, you can import and use built-in and external npm modules in the Code node. To learn how to enable external modules, refer to the [Enable modules in Code node](/hosting/configuration/configuration-examples/modules-in-code-node/) guide.
If you use n8n Cloud, you can't import external npm modules. n8n makes two modules available for you:
diff --git a/_snippets/self-hosting/installation/latest-next-version.md b/_snippets/self-hosting/installation/latest-next-version.md
index c1eb7e881..45186dfc9 100644
--- a/_snippets/self-hosting/installation/latest-next-version.md
+++ b/_snippets/self-hosting/installation/latest-next-version.md
@@ -1,6 +1,6 @@
/// note | Latest and Next versions
n8n releases a new minor version most weeks. The `latest` version is for production use. `next` is the most recent release. You should treat `next` as a beta: it may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12){:target=_blank .external-link}.
-Current `latest`: 1.47.1
-Current `next`: 1.48.0
+Current `latest`: 1.47.3
+Current `next`: 1.49.0
///
diff --git a/_snippets/self-hosting/installation/server-setups-next-steps.md b/_snippets/self-hosting/installation/server-setups-next-steps.md
index c05f9fc7b..35a92258e 100644
--- a/_snippets/self-hosting/installation/server-setups-next-steps.md
+++ b/_snippets/self-hosting/installation/server-setups-next-steps.md
@@ -1,2 +1,2 @@
-* Learn more about [configuring](/hosting/configuration/) and [scaling](/hosting/scaling/) n8n.
+* Learn more about [configuring](/hosting/configuration/environment-variables/) and [scaling](/hosting/scaling/overview) n8n.
* Or explore using n8n: try the [Quickstarts](/try-it-out/).
diff --git a/archive/n8n-nodes-base.functionItem.md b/archive/n8n-nodes-base.functionItem.md
index 95063c928..2f5c198d5 100644
--- a/archive/n8n-nodes-base.functionItem.md
+++ b/archive/n8n-nodes-base.functionItem.md
@@ -80,4 +80,4 @@ delete staticData.lastExecution;
## External libraries
-You can import and use built-in and external npm modules in the Function Item node. To learn how to enable external moduels, refer the [Configuration](/hosting/configuration/) guide.
+You can import and use built-in and external npm modules in the Function Item node. To learn how to enable external modules, refer the [Configuration](/hosting/configuration/environment-variables/) guide.
diff --git a/docs/1-0-migration-checklist.md b/docs/1-0-migration-checklist.md
index 6822f287b..9c44f997d 100644
--- a/docs/1-0-migration-checklist.md
+++ b/docs/1-0-migration-checklist.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: n8n v1.0 migration guide
description: What's new in version 1
contentType: reference
@@ -42,7 +43,7 @@ n8n has removed support for MySQL and MariaDB as storage backends for n8n. These
Previously, you could use the `EXECUTIONS_PROCESS` environment variable to specify whether executions should run in the `main` process or in their `own` processes. This option and `own` mode are now deprecated and will be removed in a future version of n8n. This is because it led to increased code complexity while offering marginal benefits. Starting from n8n 1.0, `main` will be the new default.
-Note that executions start much faster in `main` mode than in `own` mode. However, if a workflow consumes more memory than is available, it might crash the entire n8n application instead of just the worker thread. To mitigate this, make sure to allocate enough system resources or configure [queue mode](https://docs.n8n.io/hosting/scaling/queue-mode/) to distribute executions among multiple workers.
+Note that executions start much faster in `main` mode than in `own` mode. However, if a workflow consumes more memory than is available, it might crash the entire n8n application instead of just the worker thread. To mitigate this, make sure to allocate enough system resources or configure [queue mode](/hosting/scaling/queue-mode/) to distribute executions among multiple workers.
[PR #6196](https://github.com/n8n-io/n8n/pull/6196){:target=_blank .external link}
@@ -121,7 +122,7 @@ If you build custom nodes, refer to [HTTP request helpers](/integrations/creatin
### Removed WEBHOOK_TUNNEL_URL
-As of version 0.227.0, n8n has renamed the `WEBHOOK_TUNNEL_URL` configuration option to `WEBHOOK_URL`. In n8n 1.0, `WEBHOOK_TUNNEL_URL` has been removed. Update your setup to reflect the new name. For more information about this configuration option, refer to [the docs](/hosting/configuration/configuration-methods/#webhook-url).
+As of version 0.227.0, n8n has renamed the `WEBHOOK_TUNNEL_URL` configuration option to `WEBHOOK_URL`. In n8n 1.0, `WEBHOOK_TUNNEL_URL` has been removed. Update your setup to reflect the new name. For more information about this configuration option, refer to [the docs](/hosting/configuration/configuration-examples/webhook-url/).
[PR #1408](https://github.com/n8n-io/n8n/pull/1408){:target=_blank .external link}
diff --git a/docs/_extra/css/extra.css b/docs/_extra/css/extra.css
index 6bbbc68a9..31417e115 100644
--- a/docs/_extra/css/extra.css
+++ b/docs/_extra/css/extra.css
@@ -149,6 +149,24 @@
margin-top: 1em;
}
+/* additional links in footer */
+
+.n8n-footer-links {
+ border-bottom: 1px solid var(--md-footer-fg-color--light);
+ display: flex;
+ justify-content: space-between;
+ margin: auto .6rem;
+ padding: .4rem 0;
+}
+
+.n8n-footer-links > strong {
+ color: var(--md-footer-fg-color--light);
+}
+
+.md-footer-meta__inner {
+ flex-direction: column;
+}
+
/* preserve the logo and site title on page scroll */
.md-header__topic:first-child {
diff --git a/docs/_extra/css/templates-widget.css b/docs/_extra/css/templates-widget.css
new file mode 100644
index 000000000..0adcd1911
--- /dev/null
+++ b/docs/_extra/css/templates-widget.css
@@ -0,0 +1,28 @@
+.n8n-templates-widget {
+ display: flex;
+ flex-direction: column;
+}
+
+.n8n-templates-widget-template {
+ display: flex;
+ flex-direction: column;
+ border: .05rem solid var(--md-default-fg-color--lightest);
+ border-radius: 6px;
+ margin: .4em;
+ padding: 12px 16px;
+}
+
+.n8n-templates-name {
+ margin-top: 0px;
+ margin-bottom: 24px;
+ font-size: 15px;
+}
+
+.n8n-templates-widget-more {
+ padding: 1em 0 0 0;
+}
+
+.n8n-templates-link {
+ font-weight: 600;
+ font-size: 15px;
+}
diff --git a/docs/_extra/css/workflow-demo.css b/docs/_extra/css/workflow-demo.css
new file mode 100644
index 000000000..ba99bb437
--- /dev/null
+++ b/docs/_extra/css/workflow-demo.css
@@ -0,0 +1,5 @@
+.n8n-workflow-preview {
+ background-color: var(--color-background-light);
+ border: 1px solid var(--color-foreground-base);
+ text-align: center;
+}
diff --git a/docs/_redirects b/docs/_redirects
index 1abad439d..d579a3c33 100644
--- a/docs/_redirects
+++ b/docs/_redirects
@@ -1,3 +1,44 @@
+# 2024 SEO audit
+/nodes/nodes.html /integrations/builtin/node-types/
+/getting-started/installation/advanced/server-setup.html /hosting/installation/server-setups/
+/getting-started/installation/advanced/server-setup.html#server-setups /hosting/installation/server-setups/
+/getting-started/key-components.html /workflows/
+/integrations/buil%20%20%20%20%20%20%20%20%20%20%205tin/core-nodes/n8n-nodes-base.start/ /integrations/builtin/core-nodes/n8n-nodes-base.start/
+/getting-started/create-your-first-workflow/* /try-it-out/
+/reference/security/ /privacy-security/security/
+/reference/reference.html /
+/integrations/builtin/core-nodes/n8n-nodes-base.executionData /integrations/builtin/core-nodes/n8n-nodes-base.executiondata/
+
+
+# Moved from 404.html
+/getting-started/key-concepts/ /flow-logic/
+/getting-started/key-concepts/#expression /code/expressions/
+/getting-started/key-concepts/#item /data/data-structure/
+/getting-started/key-concepts/#function /data/code/
+/getting-started/key-concepts/#data /data/
+/getting-started/key-concepts/#data-structure /data/data-structure/
+/key-concepts/#data-flow /data/data-structure/
+/key-concepts/#error-workflow /flow-logic/error-handling/
+/key-concepts/#security /hosting/configuration/user-management-self-hosted/
+/getting-started/whats-next.html /try-it-out/quickstart/#next-steps
+/getting-started/installation/advanced/server-setup.html#docker-compose-examples /hosting/installation/server-setups/docker-compose/
+/reference/faq.html#Integrations /integrations/
+/reference/faq.html /faircode-license/
+/reference/faq.html#License /faircode-license/
+/reference/faq.html#n8n-cloud /manage-cloud/overview/
+/nodes/expressions.html#expressions /code/expressions/
+/editor-ui/workflows /workflows/
+/editor-ui/credentials /credentials/
+/editor-ui/executions /workflows/executions/
+/editor-ui/admin-panel /manage-cloud/update-cloud-version/
+/#what-is-n8n /
+/getting-started/tutorials.html#blogposts https://n8n.io/blog/tag/tutorial/
+/#server-setup /hosting/installation/server-setups/
+/code-examples/expressions/expressions.html /code/expressions/
+/hosting/configuration/#use-built-in-and-external-modules-in-function-nodes /hosting/configuration/configuration-examples/modules-in-code-node/
+/hosting/configuration/#use-built-in-and-external-modules-in-the-code-node /hosting/configuration/configuration-examples/modules-in-code-node/
+
+
/integrations/builtin/core-nodes/n8n-nodes-base.interval/ /integrations/builtin/core-nodes/n8n-nodes-base.scheduletrigger/
/integrations/builtin/credentials/google/googlepalm/ /integrations/builtin/credentials/google/googleai/
@@ -32,7 +73,7 @@
/langchain/access-langchain/ /advanced-ai/
-/choose-n8n/cloud/ /manage-cloud/
+/choose-n8n/cloud/ /manage-cloud/overview/
/choose-n8n/faircode-license/ /faircode-license/
/cloud-admin-dashboard/ /manage-cloud/cloud-admin-dashboard/
/hosting/scaling/execution-modes-processes/ /hosting/scaling/queue-mode/
@@ -138,7 +179,7 @@
# License release 2022/2023
-/reference/license/ /choose-n8n/faircode-license/
+/reference/license/ /faircode-license/
# Workflows refactor 2022
@@ -152,7 +193,7 @@
# Hosting user paths 2022
/hosting/options/ /choose-n8n/
-/hosting/installation/cloud/ /manage-cloud/
+/hosting/installation/cloud/ /manage-cloud/overview/
/hosting/installation/desktop-app/ /choose-n8n/
/hosting/server-setups/* /hosting/installation/server-setups/:splat
/hosting/configuration/ /hosting/configuration/environment-variables/
@@ -164,7 +205,6 @@
/hosting/databases/structure/ /hosting/architecture/database-structure/
/hosting/security/ /hosting/user-management/
/hosting/user-management/ /user-management/
-/hosting/configuration/ /hosting/configuration/configuration-methods/
# 2022 SEO audit
@@ -243,7 +283,7 @@
# Updated during IA work
/getting-started/key-components/ /workflows/
/getting-started/key-components/connection.html /workflows/connections/
-/getting-started/key-components/editor-ui.html /editor-ui/
+/getting-started/key-components/editor-ui.html /
/getting-started/key-components/node.html /workflows/nodes/
/getting-started/key-components/workflow.html /workflows/workflows/
/getting-started/key-concepts/looping.html /flow-logic/looping/
diff --git a/docs/advanced-ai/examples/agent-chain-comparison.md b/docs/advanced-ai/examples/agent-chain-comparison.md
index c2c0d43f3..796a90b77 100644
--- a/docs/advanced-ai/examples/agent-chain-comparison.md
+++ b/docs/advanced-ai/examples/agent-chain-comparison.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
title: Agents vs chains
description: A workflow example that demonstrates key differences between agents and chains.
diff --git a/docs/advanced-ai/examples/api-workflow-tool.md b/docs/advanced-ai/examples/api-workflow-tool.md
index d09d5ed3d..064779ca4 100644
--- a/docs/advanced-ai/examples/api-workflow-tool.md
+++ b/docs/advanced-ai/examples/api-workflow-tool.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
title: Call an API to fetch data
description: Use the n8n workflow tool to load data from an API using the HTTP Request node into your AI workflow.
diff --git a/docs/advanced-ai/examples/data-google-sheets.md b/docs/advanced-ai/examples/data-google-sheets.md
index 013a3ace2..bdea11ee7 100644
--- a/docs/advanced-ai/examples/data-google-sheets.md
+++ b/docs/advanced-ai/examples/data-google-sheets.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
title: Chat with a Google Sheet using AI
description: Use the n8n workflow tool to load data from Google Sheets into your AI workflow.
diff --git a/docs/advanced-ai/examples/human-fallback.md b/docs/advanced-ai/examples/human-fallback.md
index 533f67525..066379b8c 100644
--- a/docs/advanced-ai/examples/human-fallback.md
+++ b/docs/advanced-ai/examples/human-fallback.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
title: Set a human fallback for AI workflows
description: Have a workflow that triggers a human answer when the AI can't help.
diff --git a/docs/advanced-ai/examples/introduction.md b/docs/advanced-ai/examples/introduction.md
index 67e4e729c..f7da665e3 100644
--- a/docs/advanced-ai/examples/introduction.md
+++ b/docs/advanced-ai/examples/introduction.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
title: Advanced AI examples and concepts
description: Example workflows and use cases for building AI functionality using n8n.
diff --git a/docs/advanced-ai/examples/understand-agents.md b/docs/advanced-ai/examples/understand-agents.md
index 33d7688b5..4bc56541c 100644
--- a/docs/advanced-ai/examples/understand-agents.md
+++ b/docs/advanced-ai/examples/understand-agents.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: What is an agent in AI?
description: Understand agents in the context of AI. Learn how n8n provides agents.
contentType: explanation
diff --git a/docs/advanced-ai/examples/understand-chains.md b/docs/advanced-ai/examples/understand-chains.md
index 6d0d410e4..b2bb84957 100644
--- a/docs/advanced-ai/examples/understand-chains.md
+++ b/docs/advanced-ai/examples/understand-chains.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: What is a chain in AI?
description: Understand chains in the context of AI. Learn about chains in n8n.
contentType: explanation
diff --git a/docs/advanced-ai/examples/understand-memory.md b/docs/advanced-ai/examples/understand-memory.md
index eed8ccffc..07a7e1b53 100644
--- a/docs/advanced-ai/examples/understand-memory.md
+++ b/docs/advanced-ai/examples/understand-memory.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: What is memory in AI?
description: Understand memory in the context of AI. Learn what's special about memory in n8n.
contentType: explanation
diff --git a/docs/advanced-ai/examples/understand-tools.md b/docs/advanced-ai/examples/understand-tools.md
index f6181929d..16a73ec1c 100644
--- a/docs/advanced-ai/examples/understand-tools.md
+++ b/docs/advanced-ai/examples/understand-tools.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: What is a tool in AI?
description: Understand tools in the context of AI. Learn what's special about tools in n8n.
contentType: explanation
diff --git a/docs/advanced-ai/examples/understand-vector-databases.md b/docs/advanced-ai/examples/understand-vector-databases.md
index 4156af8bc..c1a9540c2 100644
--- a/docs/advanced-ai/examples/understand-vector-databases.md
+++ b/docs/advanced-ai/examples/understand-vector-databases.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: What are vector databases?
description: Understand vector databases. Learn how n8n provides vector databases, along with the key components to work with them, including embeddings, retrievers, and document loaders.
contentType: explanation
diff --git a/docs/advanced-ai/examples/vector-store-website.md b/docs/advanced-ai/examples/vector-store-website.md
index b9f658e24..a7390b68f 100644
--- a/docs/advanced-ai/examples/vector-store-website.md
+++ b/docs/advanced-ai/examples/vector-store-website.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
title: Populate a Pinecone vector database from a website
description: Scrape a website, load the data into Pinecone, then query it using a chat workflow.
diff --git a/docs/advanced-ai/index.md b/docs/advanced-ai/index.md
index 29408777b..5c30f7399 100644
--- a/docs/advanced-ai/index.md
+++ b/docs/advanced-ai/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
title: Advanced AI
description: Use n8n's LangChain integrations to build AI-powered functionality within your workflows. Connect your LangChain functionality to other data sources and services.
diff --git a/docs/advanced-ai/intro-tutorial.md b/docs/advanced-ai/intro-tutorial.md
index 930a79ed4..5dd5b05b5 100644
--- a/docs/advanced-ai/intro-tutorial.md
+++ b/docs/advanced-ai/intro-tutorial.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Learn how to build AI workflows using n8n's LangChain implementation. You'll build a chat workflow that uses ChatGPT and pulls in data from other n8n workflows.
type: tutorial
---
diff --git a/docs/advanced-ai/langchain/langchain-n8n.md b/docs/advanced-ai/langchain/langchain-n8n.md
index 447a37d9c..7be03a542 100644
--- a/docs/advanced-ai/langchain/langchain-n8n.md
+++ b/docs/advanced-ai/langchain/langchain-n8n.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
title: LangChain concepts in n8n
description: How LangChain concepts map to n8n, and which n8n nodes to use.
@@ -155,6 +156,7 @@ Utility tools.
* [Calculator](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcalculator/)
* [Code Tool](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcode/)
* [SerpAPI](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolserpapi/)
+* [Vector Store Tool](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolvectorstore/)
* [Wikipedia](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwikipedia/)
* [Wolfram|Alpha](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwolframalpha/)
* [Workflow Tool](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/)
diff --git a/docs/advanced-ai/langchain/langsmith.md b/docs/advanced-ai/langchain/langsmith.md
index c015bbb8b..b93c3f2e1 100644
--- a/docs/advanced-ai/langchain/langsmith.md
+++ b/docs/advanced-ai/langchain/langsmith.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
title: Use LangSmith with n8n
description: How to enable LangSmith for your self-hosted n8n instance.
diff --git a/docs/advanced-ai/langchain/overview.md b/docs/advanced-ai/langchain/overview.md
index d293b1e89..b3e57c012 100644
--- a/docs/advanced-ai/langchain/overview.md
+++ b/docs/advanced-ai/langchain/overview.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
title: LangChain in n8n
description: Understand how n8n uses LangChain to provide advanced AI functionality.
diff --git a/docs/api/api-reference.md b/docs/api/api-reference.md
index f2f916cea..809e63a02 100644
--- a/docs/api/api-reference.md
+++ b/docs/api/api-reference.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
template: api.html
hide:
- toc
diff --git a/docs/api/authentication.md b/docs/api/authentication.md
index 0cf9ac794..c90dad8f0 100644
--- a/docs/api/authentication.md
+++ b/docs/api/authentication.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Authentication for n8n's public REST API.
contentType: howto
---
diff --git a/docs/api/index.md b/docs/api/index.md
index e431d9b00..74b0253fe 100644
--- a/docs/api/index.md
+++ b/docs/api/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: n8n's public REST API
contentType: overview
---
diff --git a/docs/api/pagination.md b/docs/api/pagination.md
index a4cfe40b0..3182959e3 100644
--- a/docs/api/pagination.md
+++ b/docs/api/pagination.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Pagination in n8n's public REST API.
contentType: howto
---
diff --git a/docs/api/using-api-playground.md b/docs/api/using-api-playground.md
index 9ca1c7a02..ec574ae0b 100644
--- a/docs/api/using-api-playground.md
+++ b/docs/api/using-api-playground.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: How to use the API playground to try out n8n's public REST API.
contentType: howto
---
diff --git a/docs/choose-n8n.md b/docs/choose-n8n.md
index 66faecd7c..7a72036b4 100644
--- a/docs/choose-n8n.md
+++ b/docs/choose-n8n.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Choose between our Cloud service, or self-hosting options. Learn more about licenses and n8n payment plans.
contentType: overview
---
diff --git a/docs/code/ai-code.md b/docs/code/ai-code.md
index f41120cab..b41e3193e 100644
--- a/docs/code/ai-code.md
+++ b/docs/code/ai-code.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AI coding
description: Use GPT to generate code in the Code node.
contentType: explanation
diff --git a/docs/code/builtin/convenience.md b/docs/code/builtin/convenience.md
index 69b19af1a..f22e6c189 100644
--- a/docs/code/builtin/convenience.md
+++ b/docs/code/builtin/convenience.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: n8n provides these methods to make it easier to perform common tasks in expressions.
contentType: reference
hide:
diff --git a/docs/code/builtin/current-node-input.md b/docs/code/builtin/current-node-input.md
index eb8bc544c..e90f52b37 100644
--- a/docs/code/builtin/current-node-input.md
+++ b/docs/code/builtin/current-node-input.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Methods for working with the input of the current node.
contentType: reference
hide:
diff --git a/docs/code/builtin/data-transformation-functions/arrays.md b/docs/code/builtin/data-transformation-functions/arrays.md
index c250ccdf3..a31a49f2d 100644
--- a/docs/code/builtin/data-transformation-functions/arrays.md
+++ b/docs/code/builtin/data-transformation-functions/arrays.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Data transformation functions for arrays
description: A reference document listing built-in convenience functions to support data transformation in expressions for arrays.
contentType: reference
diff --git a/docs/code/builtin/data-transformation-functions/booleans.md b/docs/code/builtin/data-transformation-functions/booleans.md
index 8e370324c..3f6797e15 100644
--- a/docs/code/builtin/data-transformation-functions/booleans.md
+++ b/docs/code/builtin/data-transformation-functions/booleans.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Data transformation functions for booleans
description: A reference document listing built-in convenience functions to support data transformation in expressions for booleans.
contentType: reference
diff --git a/docs/code/builtin/data-transformation-functions/dates.md b/docs/code/builtin/data-transformation-functions/dates.md
index 04afca06c..d7f1ccee1 100644
--- a/docs/code/builtin/data-transformation-functions/dates.md
+++ b/docs/code/builtin/data-transformation-functions/dates.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Data transformation functions for dates
description: A reference document listing built-in convenience functions to support data transformation in expressions for dates.
contentType: reference
diff --git a/docs/code/builtin/data-transformation-functions/index.md b/docs/code/builtin/data-transformation-functions/index.md
index a26d602c7..37985f22c 100644
--- a/docs/code/builtin/data-transformation-functions/index.md
+++ b/docs/code/builtin/data-transformation-functions/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Data transformation functions
description: Introduction to data transformation functions for expressions.
contentType: overview
diff --git a/docs/code/builtin/data-transformation-functions/numbers.md b/docs/code/builtin/data-transformation-functions/numbers.md
index bea8f3c01..e716f5ffc 100644
--- a/docs/code/builtin/data-transformation-functions/numbers.md
+++ b/docs/code/builtin/data-transformation-functions/numbers.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Data transformation functions for numbers
description: A reference document listing built-in convenience functions to support data transformation in expressions for numbers.
contentType: reference
diff --git a/docs/code/builtin/data-transformation-functions/objects.md b/docs/code/builtin/data-transformation-functions/objects.md
index 6dd961d13..fe7c2e9d6 100644
--- a/docs/code/builtin/data-transformation-functions/objects.md
+++ b/docs/code/builtin/data-transformation-functions/objects.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Data transformation functions for objects
description: A reference document listing built-in convenience functions to support data transformation in expressions for objects.
contentType: reference
diff --git a/docs/code/builtin/data-transformation-functions/strings.md b/docs/code/builtin/data-transformation-functions/strings.md
index 804a74d0c..c48f4bc84 100644
--- a/docs/code/builtin/data-transformation-functions/strings.md
+++ b/docs/code/builtin/data-transformation-functions/strings.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Data transformation functions for strings
description: A reference document listing built-in convenience functions to support data transformation in expressions for strings.
contentType: reference
diff --git a/docs/code/builtin/date-time.md b/docs/code/builtin/date-time.md
index 60ce44797..041b0deb0 100644
--- a/docs/code/builtin/date-time.md
+++ b/docs/code/builtin/date-time.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Methods for working with date and time.
contentType: reference
hide:
diff --git a/docs/code/builtin/http-node-variables.md b/docs/code/builtin/http-node-variables.md
index 208eceaf4..c7f4f24d6 100644
--- a/docs/code/builtin/http-node-variables.md
+++ b/docs/code/builtin/http-node-variables.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: n8n provides these methods to make it easier to perform common tasks in expressions.
contentType: reference
hide:
diff --git a/docs/code/builtin/jmespath.md b/docs/code/builtin/jmespath.md
index 49b368e8a..a1eeac560 100644
--- a/docs/code/builtin/jmespath.md
+++ b/docs/code/builtin/jmespath.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: A method for working with the JMESPath library in n8n.
contentType: reference
hide:
diff --git a/docs/code/builtin/langchain-methods.md b/docs/code/builtin/langchain-methods.md
index 4b289fe9d..ae1ef22dc 100644
--- a/docs/code/builtin/langchain-methods.md
+++ b/docs/code/builtin/langchain-methods.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: n8n provides these methods to make it easier to perform common tasks in the LangChain Code node.
contentType: reference
hide:
diff --git a/docs/code/builtin/n8n-metadata.md b/docs/code/builtin/n8n-metadata.md
index 64519e0f6..0b90de71e 100644
--- a/docs/code/builtin/n8n-metadata.md
+++ b/docs/code/builtin/n8n-metadata.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Methods for working with n8n metadata.
contentType: reference
hide:
diff --git a/docs/code/builtin/output-other-nodes.md b/docs/code/builtin/output-other-nodes.md
index 902e7c4ba..85f8846c3 100644
--- a/docs/code/builtin/output-other-nodes.md
+++ b/docs/code/builtin/output-other-nodes.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Methods for working with the output of other nodes.
contentType: reference
hide:
diff --git a/docs/code/builtin/overview.md b/docs/code/builtin/overview.md
index c8c8ad363..aecb3d040 100644
--- a/docs/code/builtin/overview.md
+++ b/docs/code/builtin/overview.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: n8n's built-in custom methods and variables.
contentType: overview
---
diff --git a/docs/code/code-node.md b/docs/code/code-node.md
index 35522e7d0..2c1c0013e 100644
--- a/docs/code/code-node.md
+++ b/docs/code/code-node.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: integration
---
diff --git a/docs/code/cookbook/builtin/all.md b/docs/code/cookbook/builtin/all.md
index be79a48eb..ddc219ba5 100644
--- a/docs/code/cookbook/builtin/all.md
+++ b/docs/code/cookbook/builtin/all.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: reference
---
diff --git a/docs/code/cookbook/builtin/execution.md b/docs/code/cookbook/builtin/execution.md
index c288d4f22..ec814195d 100644
--- a/docs/code/cookbook/builtin/execution.md
+++ b/docs/code/cookbook/builtin/execution.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: reference
---
diff --git a/docs/code/cookbook/builtin/get-workflow-static-data.md b/docs/code/cookbook/builtin/get-workflow-static-data.md
index 78ad75a0c..b2ca58344 100644
--- a/docs/code/cookbook/builtin/get-workflow-static-data.md
+++ b/docs/code/cookbook/builtin/get-workflow-static-data.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
tags:
- "static data"
- "global variables"
diff --git a/docs/code/cookbook/builtin/index.md b/docs/code/cookbook/builtin/index.md
index b85da4906..f143a8c35 100644
--- a/docs/code/cookbook/builtin/index.md
+++ b/docs/code/cookbook/builtin/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/code/cookbook/builtin/itemmatching.md b/docs/code/cookbook/builtin/itemmatching.md
index 2ca23a6d3..94c5ccf8a 100644
--- a/docs/code/cookbook/builtin/itemmatching.md
+++ b/docs/code/cookbook/builtin/itemmatching.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: How to use `("").itemMatching(currentNodeinputIndex)`
contentType: howto
---
diff --git a/docs/code/cookbook/builtin/vars.md b/docs/code/cookbook/builtin/vars.md
index d4d563d09..863fb9d4e 100644
--- a/docs/code/cookbook/builtin/vars.md
+++ b/docs/code/cookbook/builtin/vars.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Access your environment's custom variables.
contentType: reference
---
diff --git a/docs/code/cookbook/code-node/console-log.md b/docs/code/cookbook/code-node/console-log.md
index 11f4421e7..2a61c5f5d 100644
--- a/docs/code/cookbook/code-node/console-log.md
+++ b/docs/code/cookbook/code-node/console-log.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: How to use console.log() or print()
contentType: howto
---
diff --git a/docs/code/cookbook/code-node/get-binary-data-buffer.md b/docs/code/cookbook/code-node/get-binary-data-buffer.md
index ccc80fe8e..049191b3d 100644
--- a/docs/code/cookbook/code-node/get-binary-data-buffer.md
+++ b/docs/code/cookbook/code-node/get-binary-data-buffer.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/code/cookbook/code-node/index.md b/docs/code/cookbook/code-node/index.md
index 8f2e771dc..6db492284 100644
--- a/docs/code/cookbook/code-node/index.md
+++ b/docs/code/cookbook/code-node/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Code examples you can use in the Code node.
contentType: overview
---
diff --git a/docs/code/cookbook/code-node/number-items-last-node.md b/docs/code/cookbook/code-node/number-items-last-node.md
index bd99bd639..d1436e49e 100644
--- a/docs/code/cookbook/code-node/number-items-last-node.md
+++ b/docs/code/cookbook/code-node/number-items-last-node.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/code/cookbook/expressions/check-incoming-data.md b/docs/code/cookbook/expressions/check-incoming-data.md
index 02eab2243..85be3487a 100644
--- a/docs/code/cookbook/expressions/check-incoming-data.md
+++ b/docs/code/cookbook/expressions/check-incoming-data.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/code/cookbook/expressions/index.md b/docs/code/cookbook/expressions/index.md
index 57764b566..0ec0f8f6a 100644
--- a/docs/code/cookbook/expressions/index.md
+++ b/docs/code/cookbook/expressions/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Code examples you can use in expressions.
contentType: overview
---
diff --git a/docs/code/cookbook/http-node/index.md b/docs/code/cookbook/http-node/index.md
index f7ee86851..2b9863cbd 100644
--- a/docs/code/cookbook/http-node/index.md
+++ b/docs/code/cookbook/http-node/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/code/cookbook/http-node/pagination.md b/docs/code/cookbook/http-node/pagination.md
index a37e91fe7..4c0efe58c 100644
--- a/docs/code/cookbook/http-node/pagination.md
+++ b/docs/code/cookbook/http-node/pagination.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Pagination examples for the HTTP Request node.
contentType: howto
---
diff --git a/docs/code/cookbook/jmespath.md b/docs/code/cookbook/jmespath.md
index b7bd1b9f8..398fe5d28 100644
--- a/docs/code/cookbook/jmespath.md
+++ b/docs/code/cookbook/jmespath.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Query JSON with JMESPath
description: n8n supports the JMESPath library, to simplify working with JSON formatted data.
contentType: howto
diff --git a/docs/code/cookbook/luxon.md b/docs/code/cookbook/luxon.md
index ecb8521d5..f29be3ec4 100644
--- a/docs/code/cookbook/luxon.md
+++ b/docs/code/cookbook/luxon.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
description: Use Luxon to work with date and time in n8n.
---
diff --git a/docs/code/expressions.md b/docs/code/expressions.md
index 2bae05ba4..9d7737b52 100644
--- a/docs/code/expressions.md
+++ b/docs/code/expressions.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/code/index.md b/docs/code/index.md
index 5b698fde8..89120deea 100644
--- a/docs/code/index.md
+++ b/docs/code/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Use code in your n8n workflows, and view other developer resources.
contentType: overview
---
diff --git a/docs/code/variables.md b/docs/code/variables.md
index b38bde5a5..520d87269 100644
--- a/docs/code/variables.md
+++ b/docs/code/variables.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Custom variables allow you to store and reuse values in n8n workflows.
contentType: howto
---
diff --git a/docs/courses/index.md b/docs/courses/index.md
index e9cd33374..8d27c7f64 100644
--- a/docs/courses/index.md
+++ b/docs/courses/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/courses/level-one/chapter-1.md b/docs/courses/level-one/chapter-1.md
index 897ad5ea2..f4b3f5674 100644
--- a/docs/courses/level-one/chapter-1.md
+++ b/docs/courses/level-one/chapter-1.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-one/chapter-2.md b/docs/courses/level-one/chapter-2.md
index f44c735be..313e96557 100644
--- a/docs/courses/level-one/chapter-2.md
+++ b/docs/courses/level-one/chapter-2.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-one/chapter-3.md b/docs/courses/level-one/chapter-3.md
index 4b0cf1a7a..998ee34d4 100644
--- a/docs/courses/level-one/chapter-3.md
+++ b/docs/courses/level-one/chapter-3.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-one/chapter-4.md b/docs/courses/level-one/chapter-4.md
index 2de7c6369..596dbc39a 100644
--- a/docs/courses/level-one/chapter-4.md
+++ b/docs/courses/level-one/chapter-4.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-one/chapter-5/chapter-5.1.md b/docs/courses/level-one/chapter-5/chapter-5.1.md
index 861eb7856..43e5e34e6 100644
--- a/docs/courses/level-one/chapter-5/chapter-5.1.md
+++ b/docs/courses/level-one/chapter-5/chapter-5.1.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-one/chapter-5/chapter-5.2.md b/docs/courses/level-one/chapter-5/chapter-5.2.md
index 9a7448988..48760c124 100644
--- a/docs/courses/level-one/chapter-5/chapter-5.2.md
+++ b/docs/courses/level-one/chapter-5/chapter-5.2.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-one/chapter-5/chapter-5.3.md b/docs/courses/level-one/chapter-5/chapter-5.3.md
index 87386ef5a..2eff00469 100644
--- a/docs/courses/level-one/chapter-5/chapter-5.3.md
+++ b/docs/courses/level-one/chapter-5/chapter-5.3.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-one/chapter-5/chapter-5.4.md b/docs/courses/level-one/chapter-5/chapter-5.4.md
index a53317d1c..f1585cefd 100644
--- a/docs/courses/level-one/chapter-5/chapter-5.4.md
+++ b/docs/courses/level-one/chapter-5/chapter-5.4.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-one/chapter-5/chapter-5.5.md b/docs/courses/level-one/chapter-5/chapter-5.5.md
index 88e1100ad..c6da9d378 100644
--- a/docs/courses/level-one/chapter-5/chapter-5.5.md
+++ b/docs/courses/level-one/chapter-5/chapter-5.5.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-one/chapter-5/chapter-5.6.md b/docs/courses/level-one/chapter-5/chapter-5.6.md
index 33999dec4..97f713143 100644
--- a/docs/courses/level-one/chapter-5/chapter-5.6.md
+++ b/docs/courses/level-one/chapter-5/chapter-5.6.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-one/chapter-5/chapter-5.7.md b/docs/courses/level-one/chapter-5/chapter-5.7.md
index 31680ca25..346c82f46 100644
--- a/docs/courses/level-one/chapter-5/chapter-5.7.md
+++ b/docs/courses/level-one/chapter-5/chapter-5.7.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-one/chapter-5/chapter-5.8.md b/docs/courses/level-one/chapter-5/chapter-5.8.md
index 607066cf7..78601f4b0 100644
--- a/docs/courses/level-one/chapter-5/chapter-5.8.md
+++ b/docs/courses/level-one/chapter-5/chapter-5.8.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-one/chapter-6.md b/docs/courses/level-one/chapter-6.md
index b685432c4..2a722eda9 100644
--- a/docs/courses/level-one/chapter-6.md
+++ b/docs/courses/level-one/chapter-6.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-one/chapter-7.md b/docs/courses/level-one/chapter-7.md
index d7b290d4f..01cc39cf7 100644
--- a/docs/courses/level-one/chapter-7.md
+++ b/docs/courses/level-one/chapter-7.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-one/index.md b/docs/courses/level-one/index.md
index 15cbb527a..fecee7ffe 100644
--- a/docs/courses/level-one/index.md
+++ b/docs/courses/level-one/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/courses/level-two/chapter-1.md b/docs/courses/level-two/chapter-1.md
index d07d82789..78d37f625 100644
--- a/docs/courses/level-two/chapter-1.md
+++ b/docs/courses/level-two/chapter-1.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-two/chapter-2.md b/docs/courses/level-two/chapter-2.md
index da288c850..fa2f3a2b3 100644
--- a/docs/courses/level-two/chapter-2.md
+++ b/docs/courses/level-two/chapter-2.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-two/chapter-3.md b/docs/courses/level-two/chapter-3.md
index 5d22fad71..066ee0ad0 100644
--- a/docs/courses/level-two/chapter-3.md
+++ b/docs/courses/level-two/chapter-3.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-two/chapter-4.md b/docs/courses/level-two/chapter-4.md
index 92132d52c..8e5dad8aa 100644
--- a/docs/courses/level-two/chapter-4.md
+++ b/docs/courses/level-two/chapter-4.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-two/chapter-5/chapter-5.0.md b/docs/courses/level-two/chapter-5/chapter-5.0.md
index 790884d0f..97292a793 100644
--- a/docs/courses/level-two/chapter-5/chapter-5.0.md
+++ b/docs/courses/level-two/chapter-5/chapter-5.0.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-two/chapter-5/chapter-5.1.md b/docs/courses/level-two/chapter-5/chapter-5.1.md
index f95ca9abf..612d21c2e 100644
--- a/docs/courses/level-two/chapter-5/chapter-5.1.md
+++ b/docs/courses/level-two/chapter-5/chapter-5.1.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-two/chapter-5/chapter-5.2.md b/docs/courses/level-two/chapter-5/chapter-5.2.md
index 85d50e168..e1d235e67 100644
--- a/docs/courses/level-two/chapter-5/chapter-5.2.md
+++ b/docs/courses/level-two/chapter-5/chapter-5.2.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-two/chapter-5/chapter-5.3.md b/docs/courses/level-two/chapter-5/chapter-5.3.md
index b107a4036..d7609fb2a 100644
--- a/docs/courses/level-two/chapter-5/chapter-5.3.md
+++ b/docs/courses/level-two/chapter-5/chapter-5.3.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-two/chapter-6.md b/docs/courses/level-two/chapter-6.md
index ab99efad1..96900ff73 100644
--- a/docs/courses/level-two/chapter-6.md
+++ b/docs/courses/level-two/chapter-6.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/courses/level-two/index.md b/docs/courses/level-two/index.md
index 17a8bf009..bf7ae7a98 100644
--- a/docs/courses/level-two/index.md
+++ b/docs/courses/level-two/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/credentials/add-edit-credentials.md b/docs/credentials/add-edit-credentials.md
index 25738a647..4e40a0c57 100644
--- a/docs/credentials/add-edit-credentials.md
+++ b/docs/credentials/add-edit-credentials.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Creating and editing credentials.
contentType: howto
workflowFile: credentials/dynamic_credentials_using_expressions.json
diff --git a/docs/credentials/credential-sharing.md b/docs/credentials/credential-sharing.md
index fcb473680..3b9af470c 100644
--- a/docs/credentials/credential-sharing.md
+++ b/docs/credentials/credential-sharing.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Share credentials within an organization.
contentType: howto
---
diff --git a/docs/credentials/index.md b/docs/credentials/index.md
index d02b30acf..4156a80df 100644
--- a/docs/credentials/index.md
+++ b/docs/credentials/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Authenticating with the services you're connecting to.
contentType: overview
---
diff --git a/docs/data/binary-data.md b/docs/data/binary-data.md
index 76b24cf21..9dc46becb 100644
--- a/docs/data/binary-data.md
+++ b/docs/data/binary-data.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Binary data
description: Understand and use binary data in n8n.
contentType: overview
diff --git a/docs/data/code.md b/docs/data/code.md
index 7ebd0d3a3..c3efff7c1 100644
--- a/docs/data/code.md
+++ b/docs/data/code.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
---
diff --git a/docs/data/data-editing.md b/docs/data/data-editing.md
index f13829dd1..e645f33d8 100644
--- a/docs/data/data-editing.md
+++ b/docs/data/data-editing.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/data/data-filtering.md b/docs/data/data-filtering.md
index 952f4d709..5f0caac49 100644
--- a/docs/data/data-filtering.md
+++ b/docs/data/data-filtering.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/data/data-flow-nodes.md b/docs/data/data-flow-nodes.md
index 716ac811e..91aa0849f 100644
--- a/docs/data/data-flow-nodes.md
+++ b/docs/data/data-flow-nodes.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Data flow within nodes
description: How nodes process data items.
---
diff --git a/docs/data/data-mapping/data-item-linking/index.md b/docs/data/data-mapping/data-item-linking/index.md
index 498a7d960..717099afe 100644
--- a/docs/data/data-mapping/data-item-linking/index.md
+++ b/docs/data/data-mapping/data-item-linking/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/data/data-mapping/data-item-linking/item-linking-code-node.md b/docs/data/data-mapping/data-item-linking/item-linking-code-node.md
index 028d47650..011da2573 100644
--- a/docs/data/data-mapping/data-item-linking/item-linking-code-node.md
+++ b/docs/data/data-mapping/data-item-linking/item-linking-code-node.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/data/data-mapping/data-item-linking/item-linking-concepts.md b/docs/data/data-mapping/data-item-linking/item-linking-concepts.md
index 5e1788a8e..f1de4a08d 100644
--- a/docs/data/data-mapping/data-item-linking/item-linking-concepts.md
+++ b/docs/data/data-mapping/data-item-linking/item-linking-concepts.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
---
diff --git a/docs/data/data-mapping/data-item-linking/item-linking-errors.md b/docs/data/data-mapping/data-item-linking/item-linking-errors.md
index 4b77e5114..9007022ce 100644
--- a/docs/data/data-mapping/data-item-linking/item-linking-errors.md
+++ b/docs/data/data-mapping/data-item-linking/item-linking-errors.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: reference
---
diff --git a/docs/data/data-mapping/data-item-linking/item-linking-node-building.md b/docs/data/data-mapping/data-item-linking/item-linking-node-building.md
index e7446fe40..5631340b0 100644
--- a/docs/data/data-mapping/data-item-linking/item-linking-node-building.md
+++ b/docs/data/data-mapping/data-item-linking/item-linking-node-building.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/data/data-mapping/data-mapping-expressions.md b/docs/data/data-mapping/data-mapping-expressions.md
index 1398ad002..eb4cd2922 100644
--- a/docs/data/data-mapping/data-mapping-expressions.md
+++ b/docs/data/data-mapping/data-mapping-expressions.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/data/data-mapping/data-mapping-ui.md b/docs/data/data-mapping/data-mapping-ui.md
index 8e603566b..97cda1af0 100644
--- a/docs/data/data-mapping/data-mapping-ui.md
+++ b/docs/data/data-mapping/data-mapping-ui.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/data/data-mapping/index.md b/docs/data/data-mapping/index.md
index 419e8741d..8da9ad254 100644
--- a/docs/data/data-mapping/index.md
+++ b/docs/data/data-mapping/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/data/data-mocking.md b/docs/data/data-mocking.md
index 2fc3df2a6..2f24fd2a9 100644
--- a/docs/data/data-mocking.md
+++ b/docs/data/data-mocking.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Data mocking
description: Ways to mock data in your n8n workflow.
contentType: howto
diff --git a/docs/data/data-pinning.md b/docs/data/data-pinning.md
index b0e0b1082..20a2e25d0 100644
--- a/docs/data/data-pinning.md
+++ b/docs/data/data-pinning.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/data/data-structure.md b/docs/data/data-structure.md
index bcc0d0ede..45cb0bff7 100644
--- a/docs/data/data-structure.md
+++ b/docs/data/data-structure.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
---
diff --git a/docs/data/index.md b/docs/data/index.md
index 444ea4d2a..1b4fed166 100644
--- a/docs/data/index.md
+++ b/docs/data/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/data/transforming-data.md b/docs/data/transforming-data.md
index 573bbbf6b..4b5a8a43f 100644
--- a/docs/data/transforming-data.md
+++ b/docs/data/transforming-data.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
---
diff --git a/docs/embed/configuration.md b/docs/embed/configuration.md
index 5d2ad7b1e..d579af730 100644
--- a/docs/embed/configuration.md
+++ b/docs/embed/configuration.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/embed/deployment.md b/docs/embed/deployment.md
index 08c6ff0b2..acdb85175 100644
--- a/docs/embed/deployment.md
+++ b/docs/embed/deployment.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
---
diff --git a/docs/embed/index.md b/docs/embed/index.md
index 0adfa495c..f29d3b543 100644
--- a/docs/embed/index.md
+++ b/docs/embed/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/embed/managing-workflows.md b/docs/embed/managing-workflows.md
index 4722228b0..130807890 100644
--- a/docs/embed/managing-workflows.md
+++ b/docs/embed/managing-workflows.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/embed/prerequisites.md b/docs/embed/prerequisites.md
index 01b1b5962..029d20bc4 100644
--- a/docs/embed/prerequisites.md
+++ b/docs/embed/prerequisites.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
---
diff --git a/docs/embed/white-labelling.md b/docs/embed/white-labelling.md
index 73561c821..647b92cfe 100644
--- a/docs/embed/white-labelling.md
+++ b/docs/embed/white-labelling.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/embed/workflow-templates.md b/docs/embed/workflow-templates.md
index 05571af62..99195901d 100644
--- a/docs/embed/workflow-templates.md
+++ b/docs/embed/workflow-templates.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/enterprise-key.md b/docs/enterprise-key.md
index c67b2f17f..e2851f64c 100644
--- a/docs/enterprise-key.md
+++ b/docs/enterprise-key.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Enterprise key
description: How to use your enterprise license key.
contentType: howto
diff --git a/docs/external-secrets.md b/docs/external-secrets.md
index f0a8f8a5d..cd4999e39 100644
--- a/docs/external-secrets.md
+++ b/docs/external-secrets.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: External secrets
description: Use an external secrets vault with n8n.
contentType: howto
diff --git a/docs/faircode-license.md b/docs/faircode-license.md
index e92819a6b..8927c9aef 100644
--- a/docs/faircode-license.md
+++ b/docs/faircode-license.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: The n8n faircode license.
contentType: explanation
---
diff --git a/docs/flow-logic/error-handling.md b/docs/flow-logic/error-handling.md
index b833ae792..16a44ed8b 100644
--- a/docs/flow-logic/error-handling.md
+++ b/docs/flow-logic/error-handling.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
description: How to handle execution errors.
---
diff --git a/docs/flow-logic/execution-order.md b/docs/flow-logic/execution-order.md
index 333d45d34..e97ac9ce4 100644
--- a/docs/flow-logic/execution-order.md
+++ b/docs/flow-logic/execution-order.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Execution order in multi-branch workflows
description: How n8n decides the node execution order in multi-branch workflows.
contentType: explanation
diff --git a/docs/flow-logic/index.md b/docs/flow-logic/index.md
index 81e5bd45b..82ed883b2 100644
--- a/docs/flow-logic/index.md
+++ b/docs/flow-logic/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Flow logic
description: How to represent logic in n8n workflows.
contentType: overview
diff --git a/docs/flow-logic/looping.md b/docs/flow-logic/looping.md
index 72138ec22..86bdb7b63 100644
--- a/docs/flow-logic/looping.md
+++ b/docs/flow-logic/looping.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/flow-logic/merging.md b/docs/flow-logic/merging.md
index 3bd9a62bb..840b0f129 100644
--- a/docs/flow-logic/merging.md
+++ b/docs/flow-logic/merging.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
description: Merge data streams in you n8n workflows.
---
diff --git a/docs/flow-logic/splitting.md b/docs/flow-logic/splitting.md
index 7fb877218..7b81108df 100644
--- a/docs/flow-logic/splitting.md
+++ b/docs/flow-logic/splitting.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Split workflows into multiple paths using If and Switch
contentType: howto
---
diff --git a/docs/flow-logic/subworkflows.md b/docs/flow-logic/subworkflows.md
index 63d7d2ab8..4ed5d9f56 100644
--- a/docs/flow-logic/subworkflows.md
+++ b/docs/flow-logic/subworkflows.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
description: Call workflows from other workflows, and split large workflows into smaller components.
---
diff --git a/docs/flow-logic/waiting.md b/docs/flow-logic/waiting.md
index 620d58692..dae0964d2 100644
--- a/docs/flow-logic/waiting.md
+++ b/docs/flow-logic/waiting.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Waiting
description: How to make your workflow execution wait.
contentType: howto
diff --git a/docs/help-community/contributing.md b/docs/help-community/contributing.md
index 06f9b45fb..4ee1a7a7f 100644
--- a/docs/help-community/contributing.md
+++ b/docs/help-community/contributing.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Learn how to contribute to n8n.
contentType: howto
---
diff --git a/docs/help-community/help.md b/docs/help-community/help.md
index cade98df9..0601d7c93 100644
--- a/docs/help-community/help.md
+++ b/docs/help-community/help.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: How to get help and support with n8n.
contentType: howto
hide:
diff --git a/docs/hosting/architecture/database-structure.md b/docs/hosting/architecture/database-structure.md
index a88484e46..5b08968d5 100644
--- a/docs/hosting/architecture/database-structure.md
+++ b/docs/hosting/architecture/database-structure.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Understand the n8n database structure
contentType: explanation
---
diff --git a/docs/hosting/architecture/overview.md b/docs/hosting/architecture/overview.md
index 32f96e618..c2b18908a 100644
--- a/docs/hosting/architecture/overview.md
+++ b/docs/hosting/architecture/overview.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Understand n8n's architecture
contentType: overview
---
diff --git a/docs/hosting/cli-commands.md b/docs/hosting/cli-commands.md
index c836e44b9..96af10cc6 100644
--- a/docs/hosting/cli-commands.md
+++ b/docs/hosting/cli-commands.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: CLI commands available in n8n.
contentType: reference
---
diff --git a/docs/hosting/configuration/configuration-examples/base-url.md b/docs/hosting/configuration/configuration-examples/base-url.md
index 527e3f08a..4eb4b4692 100644
--- a/docs/hosting/configuration/configuration-examples/base-url.md
+++ b/docs/hosting/configuration/configuration-examples/base-url.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Configure the Base URL for n8n's front end access
description: Configure the Base URL environment variable to define the front end's access path to the back end's REST API for n8n.
contentType: howto
diff --git a/docs/hosting/configuration/configuration-examples/custom-nodes-location.md b/docs/hosting/configuration/configuration-examples/custom-nodes-location.md
index 21550e22c..03d46bde0 100644
--- a/docs/hosting/configuration/configuration-examples/custom-nodes-location.md
+++ b/docs/hosting/configuration/configuration-examples/custom-nodes-location.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Specify location for your custom nodes
description: Add folders and specify paths for your custom nodes.
contentType: howto
diff --git a/docs/hosting/configuration/configuration-examples/encryption-key.md b/docs/hosting/configuration/configuration-examples/encryption-key.md
index 310ed3139..7ca3c8b98 100644
--- a/docs/hosting/configuration/configuration-examples/encryption-key.md
+++ b/docs/hosting/configuration/configuration-examples/encryption-key.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Set a custom encryption key
description: Set a custom encryption key for n8n to securely encrypt credentials.
contentType: howto
diff --git a/docs/hosting/configuration/configuration-examples/execution-timeout.md b/docs/hosting/configuration/configuration-examples/execution-timeout.md
index c897c0a61..f478fe161 100644
--- a/docs/hosting/configuration/configuration-examples/execution-timeout.md
+++ b/docs/hosting/configuration/configuration-examples/execution-timeout.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Configure workflow timeout settings
description: Set execution timeouts to determine how long workflows can run.
contentType: howto
diff --git a/docs/hosting/configuration/configuration-examples/index.md b/docs/hosting/configuration/configuration-examples/index.md
index b7b87d8eb..fc2a1363a 100644
--- a/docs/hosting/configuration/configuration-examples/index.md
+++ b/docs/hosting/configuration/configuration-examples/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Configuration examples
description: An overview containing different configuration examples.
contentType: overview
diff --git a/docs/hosting/configuration/configuration-examples/isolation.md b/docs/hosting/configuration/configuration-examples/isolation.md
index d08902a55..6908e9f72 100644
--- a/docs/hosting/configuration/configuration-examples/isolation.md
+++ b/docs/hosting/configuration/configuration-examples/isolation.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Isolate n8n
description: Prevent your n8n instance from connecting with n8n's servers.
contentType: howto
diff --git a/docs/hosting/configuration/configuration-examples/modules-in-code-node.md b/docs/hosting/configuration/configuration-examples/modules-in-code-node.md
index 23bf93ec9..cec0175c4 100644
--- a/docs/hosting/configuration/configuration-examples/modules-in-code-node.md
+++ b/docs/hosting/configuration/configuration-examples/modules-in-code-node.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Enable modules in Code node
description: Allow the use of both built-in and external modules within the Code node.
contentType: howto
diff --git a/docs/hosting/configuration/configuration-examples/prometheus.md b/docs/hosting/configuration/configuration-examples/prometheus.md
index c27c7a8c0..3863c4456 100644
--- a/docs/hosting/configuration/configuration-examples/prometheus.md
+++ b/docs/hosting/configuration/configuration-examples/prometheus.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Enable Prometheus metrics
description: Enable Prometheus metrics endpoint.
contentType: howto
diff --git a/docs/hosting/configuration/configuration-examples/time-zone.md b/docs/hosting/configuration/configuration-examples/time-zone.md
index 29e03ddc2..3e812bcc0 100644
--- a/docs/hosting/configuration/configuration-examples/time-zone.md
+++ b/docs/hosting/configuration/configuration-examples/time-zone.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Set the self-hosted instance timezone
description: Change the default timezone for your self-hosted n8n instance.
contentType: howto
diff --git a/docs/hosting/configuration/configuration-examples/user-folder.md b/docs/hosting/configuration/configuration-examples/user-folder.md
index a40bad91f..80833f6bd 100644
--- a/docs/hosting/configuration/configuration-examples/user-folder.md
+++ b/docs/hosting/configuration/configuration-examples/user-folder.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Specify user folder path
description: Specify location of the folder that stores user-specific data.
contentType: howto
diff --git a/docs/hosting/configuration/configuration-examples/webhook-url.md b/docs/hosting/configuration/configuration-examples/webhook-url.md
index 0fcd87a85..6b5dba462 100644
--- a/docs/hosting/configuration/configuration-examples/webhook-url.md
+++ b/docs/hosting/configuration/configuration-examples/webhook-url.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Configure webhook URLs with reverse proxy
description: Customize n8n webhook URLs for compatibility with reverse proxy setups.
contentType: howto
diff --git a/docs/hosting/configuration/configuration-methods.md b/docs/hosting/configuration/configuration-methods.md
index 51727b9b4..10a2de0ea 100644
--- a/docs/hosting/configuration/configuration-methods.md
+++ b/docs/hosting/configuration/configuration-methods.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Configuration methods
description: How to set environment variables for n8n.
contentType: howto
diff --git a/docs/hosting/configuration/environment-variables/ai.md b/docs/hosting/configuration/environment-variables/ai.md
index 68255cab8..6a3b602fe 100644
--- a/docs/hosting/configuration/environment-variables/ai.md
+++ b/docs/hosting/configuration/environment-variables/ai.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AI environment variables
description: Manage AI features in your n8n instance.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/binary-data.md b/docs/hosting/configuration/environment-variables/binary-data.md
index f0088e92e..783d5c5c4 100644
--- a/docs/hosting/configuration/environment-variables/binary-data.md
+++ b/docs/hosting/configuration/environment-variables/binary-data.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Binary data environment variables
description: Customize binary data storage modes and paths with environment variables for your self-hosted n8n instance.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/credentials.md b/docs/hosting/configuration/environment-variables/credentials.md
index 41006ccbe..3663580ab 100644
--- a/docs/hosting/configuration/environment-variables/credentials.md
+++ b/docs/hosting/configuration/environment-variables/credentials.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Credentials environment variables
description: Manage default credentials and override them through environment variables your self-hosted n8n instance.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/database.md b/docs/hosting/configuration/environment-variables/database.md
index bf66aafd1..8802b9448 100644
--- a/docs/hosting/configuration/environment-variables/database.md
+++ b/docs/hosting/configuration/environment-variables/database.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Database environment variables
description: Set up and configure databases with environment variables for your self-hosted n8n instance.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/deployment.md b/docs/hosting/configuration/environment-variables/deployment.md
index 9cee1574d..5e9487cf2 100644
--- a/docs/hosting/configuration/environment-variables/deployment.md
+++ b/docs/hosting/configuration/environment-variables/deployment.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Deployment environment variables
description: Configure deployment options and application accessibility with environment variables for your self-hosted n8n intance.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/endpoints.md b/docs/hosting/configuration/environment-variables/endpoints.md
index eb5da61a4..e7ccf0f17 100644
--- a/docs/hosting/configuration/environment-variables/endpoints.md
+++ b/docs/hosting/configuration/environment-variables/endpoints.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Endpoints environment variables
description: Customize the application's API and webhook endpoints with environment variables for your self-hosted n8n instance.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/executions.md b/docs/hosting/configuration/environment-variables/executions.md
index c4a188bed..f63e79dda 100644
--- a/docs/hosting/configuration/environment-variables/executions.md
+++ b/docs/hosting/configuration/environment-variables/executions.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Executions environment variables
description: Environment variables to configure settings related to workflow executions.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/external-data-storage.md b/docs/hosting/configuration/environment-variables/external-data-storage.md
index 875d11da6..e2b60883d 100644
--- a/docs/hosting/configuration/environment-variables/external-data-storage.md
+++ b/docs/hosting/configuration/environment-variables/external-data-storage.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: External data storage environment variables
description: Environment variables to configure external data storage for your self-hosted n8n instance.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/external-hooks.md b/docs/hosting/configuration/environment-variables/external-hooks.md
index d68617d16..0fa50ee71 100644
--- a/docs/hosting/configuration/environment-variables/external-hooks.md
+++ b/docs/hosting/configuration/environment-variables/external-hooks.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: External hooks environment variables
description: Environment variables to integrate external hooks into your self-hosted n8n instance.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/external-secrets.md b/docs/hosting/configuration/environment-variables/external-secrets.md
index c18cda7b9..0a8d940a3 100644
--- a/docs/hosting/configuration/environment-variables/external-secrets.md
+++ b/docs/hosting/configuration/environment-variables/external-secrets.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: External secrets environment variables
description: Configure the interval for checking updates to external secrets in self-hosted n8n instance.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/index.md b/docs/hosting/configuration/environment-variables/index.md
index 245f2a428..79f4eb2f0 100644
--- a/docs/hosting/configuration/environment-variables/index.md
+++ b/docs/hosting/configuration/environment-variables/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Environment Variables Overview
description: An overview of configuration environment variables for self-hosted n8n.
contentType: overview
diff --git a/docs/hosting/configuration/environment-variables/licenses.md b/docs/hosting/configuration/environment-variables/licenses.md
index 87c1fd066..4cdf2db5d 100644
--- a/docs/hosting/configuration/environment-variables/licenses.md
+++ b/docs/hosting/configuration/environment-variables/licenses.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: License environment variables
description: Environment variables to configure license settings in n8n, including options to hide the usage page, manage license activation and auto-renewal settings, and specify the server URL for license retrieval.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/logs.md b/docs/hosting/configuration/environment-variables/logs.md
index 942568ce2..ccbc33163 100644
--- a/docs/hosting/configuration/environment-variables/logs.md
+++ b/docs/hosting/configuration/environment-variables/logs.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Logs environment variables
description: Environment variables to configure logging and diagnostic data.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/nodes.md b/docs/hosting/configuration/environment-variables/nodes.md
index 7b5d0a6a8..bc4da3443 100644
--- a/docs/hosting/configuration/environment-variables/nodes.md
+++ b/docs/hosting/configuration/environment-variables/nodes.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Nodes environment variables
description: Environment variable to configure nodes management in self-hosted n8n instance.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/queue-mode.md b/docs/hosting/configuration/environment-variables/queue-mode.md
index 1f938b853..6f218e169 100644
--- a/docs/hosting/configuration/environment-variables/queue-mode.md
+++ b/docs/hosting/configuration/environment-variables/queue-mode.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Queue mode environment variables
description: Environment variables to configure queue mode on your self-hosted n8n instance.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/security.md b/docs/hosting/configuration/environment-variables/security.md
index 5c79dc57a..75468ddd0 100644
--- a/docs/hosting/configuration/environment-variables/security.md
+++ b/docs/hosting/configuration/environment-variables/security.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Security environment variables
description: Configure authentication and environment variable access in self-hosted n8n instance.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/source-control.md b/docs/hosting/configuration/environment-variables/source-control.md
index cf425fbf2..945f76c43 100644
--- a/docs/hosting/configuration/environment-variables/source-control.md
+++ b/docs/hosting/configuration/environment-variables/source-control.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Source control environment variables
description: Environment variable to set the default SSH key type for source control setup.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/timezone-localization.md b/docs/hosting/configuration/environment-variables/timezone-localization.md
index 734dbb8f4..921c8a61a 100644
--- a/docs/hosting/configuration/environment-variables/timezone-localization.md
+++ b/docs/hosting/configuration/environment-variables/timezone-localization.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Timezone and localization environment variables
description: Set the timezone and default language locale for self-hosted n8n instance.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/user-management-smtp-2fa.md b/docs/hosting/configuration/environment-variables/user-management-smtp-2fa.md
index 465d646ce..06f1d2c27 100644
--- a/docs/hosting/configuration/environment-variables/user-management-smtp-2fa.md
+++ b/docs/hosting/configuration/environment-variables/user-management-smtp-2fa.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: User management SMTP, and two-factor authentication environment variables
description: Environment variables to set up user management and emails.
contentType: reference
diff --git a/docs/hosting/configuration/environment-variables/workflows.md b/docs/hosting/configuration/environment-variables/workflows.md
index a3a9ad892..cec37fa6f 100644
--- a/docs/hosting/configuration/environment-variables/workflows.md
+++ b/docs/hosting/configuration/environment-variables/workflows.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Workflows environment variables
description: Environment variables to configure workflows in n8n, including default naming, onboarding flow preferences, tag management, and caller policy settings.
contentType: reference
diff --git a/docs/hosting/configuration/supported-databases-settings.md b/docs/hosting/configuration/supported-databases-settings.md
index a8ced74aa..20f521078 100644
--- a/docs/hosting/configuration/supported-databases-settings.md
+++ b/docs/hosting/configuration/supported-databases-settings.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: reference
---
diff --git a/docs/hosting/configuration/user-management-self-hosted.md b/docs/hosting/configuration/user-management-self-hosted.md
index d20a7b648..1092bcdf4 100644
--- a/docs/hosting/configuration/user-management-self-hosted.md
+++ b/docs/hosting/configuration/user-management-self-hosted.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Configure self-hosted n8n for user management
contentType: howto
---
diff --git a/docs/hosting/index.md b/docs/hosting/index.md
index 2bda1c79f..465f58688 100644
--- a/docs/hosting/index.md
+++ b/docs/hosting/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
hide:
- toc
@@ -20,7 +21,7 @@ This section provides guidance on setting up n8n for both the Enterprise and Com
Learn how to configure n8n with environment variables.
- [:octicons-arrow-right-24: Configuration](/hosting/configuration/configuration-methods/)
+ [:octicons-arrow-right-24: Environment Variables](/hosting/configuration/environment-variables/)
- __Users and authentication__
diff --git a/docs/hosting/installation/docker.md b/docs/hosting/installation/docker.md
index 3967f5fae..7b8479315 100644
--- a/docs/hosting/installation/docker.md
+++ b/docs/hosting/installation/docker.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
@@ -47,7 +48,7 @@ If no directory is found, n8n creates automatically one on
startup. In this case, existing credentials saved with a different encryption key can not be used anymore.
/// note | Keep in mind
-Persisting the `/home/node/.n8n` directory even when using alternate databases is the recommended best practice, but not explicitly required. The encryption key can be provided using the `N8N_ENCRYPTION_KEY` [environment variable](/hosting/configuration/environment-variables/deployment).
+Persisting the `/home/node/.n8n` directory even when using alternate databases is the recommended best practice, but not explicitly required. The encryption key can be provided using the `N8N_ENCRYPTION_KEY` [environment variable](/hosting/configuration/environment-variables/).
///
### PostgresDB
diff --git a/docs/hosting/installation/npm.md b/docs/hosting/installation/npm.md
index 3e3416a6f..c597cb664 100644
--- a/docs/hosting/installation/npm.md
+++ b/docs/hosting/installation/npm.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/hosting/installation/server-setups/aws.md b/docs/hosting/installation/server-setups/aws.md
index 27b572d9a..47ef07a71 100644
--- a/docs/hosting/installation/server-setups/aws.md
+++ b/docs/hosting/installation/server-setups/aws.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
@@ -80,7 +81,7 @@ The `postgres-deployment.yaml` manifest then uses the values from this manifest
### Create a volume for file storage
-While not essential for running n8n, using persistent volumes helps maintain files uploaded while using n8n and if you want to persist [manual n8n encryption keys](https://docs.n8n.io/hosting/configuration/#encryption-key) between restarts, which saves a file containing the key into file storage during startup.
+While not essential for running n8n, using persistent volumes helps maintain files uploaded while using n8n and if you want to persist [manual n8n encryption keys](/hosting/configuration/environment-variables/deployment/) between restarts, which saves a file containing the key into file storage during startup.
The `n8n-claim0-persistentvolumeclaim.yaml` manifest creates this, and the n8n Deployment mounts that claim in the `volumes` section of the `n8n-deployment.yaml` manifest.
diff --git a/docs/hosting/installation/server-setups/azure.md b/docs/hosting/installation/server-setups/azure.md
index 86372d7ee..dc79eeacd 100644
--- a/docs/hosting/installation/server-setups/azure.md
+++ b/docs/hosting/installation/server-setups/azure.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
@@ -78,7 +79,7 @@ The `postgres-deployment.yaml` manifest then uses the values from this manifest
While not essential for running n8n, using persistent volumes is required for:
* Using nodes that interact with files, such as the binary data node.
-* If you want too persist [manual n8n encryption keys](https://docs.n8n.io/hosting/configuration/#encryption-key) between restarts. This saves a file containing the key into file storage during startup.
+* If you want to persist [manual n8n encryption keys](/hosting/configuration/environment-variables/deployment/) between restarts. This saves a file containing the key into file storage during startup.
The `n8n-claim0-persistentvolumeclaim.yaml` manifest creates this, and the n8n Deployment mounts that claim in the `volumes` section of the `n8n-deployment.yaml` manifest.
diff --git a/docs/hosting/installation/server-setups/digital-ocean.md b/docs/hosting/installation/server-setups/digital-ocean.md
index 53c9fb5e6..6b30edfae 100644
--- a/docs/hosting/installation/server-setups/digital-ocean.md
+++ b/docs/hosting/installation/server-setups/digital-ocean.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/hosting/installation/server-setups/docker-compose.md b/docs/hosting/installation/server-setups/docker-compose.md
index 7cc9eca22..352114e29 100644
--- a/docs/hosting/installation/server-setups/docker-compose.md
+++ b/docs/hosting/installation/server-setups/docker-compose.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/hosting/installation/server-setups/google-cloud.md b/docs/hosting/installation/server-setups/google-cloud.md
index b29344975..1c005f492 100644
--- a/docs/hosting/installation/server-setups/google-cloud.md
+++ b/docs/hosting/installation/server-setups/google-cloud.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
@@ -90,7 +91,7 @@ The `postgres-deployment.yaml` manifest then uses the values from this manifest
While not essential for running n8n, using persistent volumes is required for:
* Using nodes that interact with files, such as the binary data node.
-* If you want too persist [manual n8n encryption keys](https://docs.n8n.io/hosting/configuration/#encryption-key) between restarts. This saves a file containing the key into file storage during startup.
+* If you want to persist [manual n8n encryption keys](/hosting/configuration/environment-variables/deployment/) between restarts. This saves a file containing the key into file storage during startup.
The `n8n-claim0-persistentvolumeclaim.yaml` manifest creates this, and the n8n Deployment mounts that claim in the `volumes` section of the `n8n-deployment.yaml` manifest.
diff --git a/docs/hosting/installation/server-setups/heroku.md b/docs/hosting/installation/server-setups/heroku.md
index a212652dd..ee56497cc 100644
--- a/docs/hosting/installation/server-setups/heroku.md
+++ b/docs/hosting/installation/server-setups/heroku.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
@@ -30,7 +31,7 @@ Heroku pre-fills the configuration options defined in the `env` section of the `
You can change any of these values to suit your needs. You must change the following values:
-- **N8N_ENCRYPTION_KEY**, which n8n uses to [encrypt user account details](/hosting/configuration/#encryption-key) before saving to the database.
+- **N8N_ENCRYPTION_KEY**, which n8n uses to [encrypt user account details](/hosting/configuration/environment-variables/deployment/) before saving to the database.
- **WEBHOOK_URL** should match the application name you create to ensure that webhooks have the correct URL.
### Deploy n8n
diff --git a/docs/hosting/installation/server-setups/hetzner.md b/docs/hosting/installation/server-setups/hetzner.md
index 7714b5226..ecc30c01a 100644
--- a/docs/hosting/installation/server-setups/hetzner.md
+++ b/docs/hosting/installation/server-setups/hetzner.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/hosting/installation/server-setups/index.md b/docs/hosting/installation/server-setups/index.md
index e22e5c400..d6e7a2a09 100644
--- a/docs/hosting/installation/server-setups/index.md
+++ b/docs/hosting/installation/server-setups/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/hosting/installation/updating.md b/docs/hosting/installation/updating.md
index 31cd62953..b5b60c123 100644
--- a/docs/hosting/installation/updating.md
+++ b/docs/hosting/installation/updating.md
@@ -1,12 +1,13 @@
---
+# https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Best practices for updating your self-hosted n8n
title: Update self-hosted n8n
contentType: explanation
tags:
- - update npm
- - update docker
+ - update npm
+ - update docker
hide:
- - tags
+ - tags
---
# Update self-hosted n8n
diff --git a/docs/hosting/logging-monitoring/logging.md b/docs/hosting/logging-monitoring/logging.md
index 19f83c0ce..8bfd23ddb 100644
--- a/docs/hosting/logging-monitoring/logging.md
+++ b/docs/hosting/logging-monitoring/logging.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
@@ -11,7 +12,7 @@ n8n Self-hosted Enterprise tier includes [Log streaming](/log-streaming/), in ad
///
## Setup
-To set up logging in n8n, you need to set the following environment variables (you can also set the values in the [configuration file](/hosting/configuration/#configuration-via-file))
+To set up logging in n8n, you need to set the following environment variables (you can also set the values in the [configuration file](/hosting/configuration/environment-variables/))
| Setting in the configuration file | Using environment variables | Description |
|-----------------------------------|-----------------------------|-------------|
diff --git a/docs/hosting/logging-monitoring/monitoring.md b/docs/hosting/logging-monitoring/monitoring.md
index ba2e8b1a4..9b9d992d1 100644
--- a/docs/hosting/logging-monitoring/monitoring.md
+++ b/docs/hosting/logging-monitoring/monitoring.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Get metrics for a health check
contentType: howto
---
diff --git a/docs/hosting/logging-monitoring/security-audit.md b/docs/hosting/logging-monitoring/security-audit.md
index e89f2ffe3..a6588a143 100644
--- a/docs/hosting/logging-monitoring/security-audit.md
+++ b/docs/hosting/logging-monitoring/security-audit.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: "Run a security audit on your n8n instance."
contentType: howto
---
diff --git a/docs/hosting/scaling/binary-data.md b/docs/hosting/scaling/binary-data.md
index 7899e21d3..37b622090 100644
--- a/docs/hosting/scaling/binary-data.md
+++ b/docs/hosting/scaling/binary-data.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Scaling binary data in n8n
description: How to handle large files without degrading n8n's performance.
contentType: howto
diff --git a/docs/hosting/scaling/concurrency-control.md b/docs/hosting/scaling/concurrency-control.md
index 9e993f990..f4eeb2e0a 100644
--- a/docs/hosting/scaling/concurrency-control.md
+++ b/docs/hosting/scaling/concurrency-control.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
---
diff --git a/docs/hosting/scaling/execution-data.md b/docs/hosting/scaling/execution-data.md
index ac55ba37b..7f6086854 100644
--- a/docs/hosting/scaling/execution-data.md
+++ b/docs/hosting/scaling/execution-data.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/hosting/scaling/external-storage.md b/docs/hosting/scaling/external-storage.md
index 7c2dc6f29..cbacadc03 100644
--- a/docs/hosting/scaling/external-storage.md
+++ b/docs/hosting/scaling/external-storage.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: External storage of binary data for your n8n instance.
contentType: howto
---
diff --git a/docs/hosting/scaling/memory-errors.md b/docs/hosting/scaling/memory-errors.md
index cadeeef7e..655c16142 100644
--- a/docs/hosting/scaling/memory-errors.md
+++ b/docs/hosting/scaling/memory-errors.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
---
diff --git a/docs/hosting/scaling/overview.md b/docs/hosting/scaling/overview.md
index 20fd84226..843d05c7c 100644
--- a/docs/hosting/scaling/overview.md
+++ b/docs/hosting/scaling/overview.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/hosting/scaling/performance-benchmarking.md b/docs/hosting/scaling/performance-benchmarking.md
index ca4a23fc5..8198d5e86 100644
--- a/docs/hosting/scaling/performance-benchmarking.md
+++ b/docs/hosting/scaling/performance-benchmarking.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: n8n performance and resource consumption benchmarking.
contentType: explanation
---
diff --git a/docs/hosting/scaling/queue-mode.md b/docs/hosting/scaling/queue-mode.md
index 7ee8ecc7d..2a6d5dd8b 100644
--- a/docs/hosting/scaling/queue-mode.md
+++ b/docs/hosting/scaling/queue-mode.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
@@ -38,7 +39,7 @@ Workers are n8n instances that do the actual work. They receive information from
### Set encryption key
-n8n automatically generates an encryption key upon first startup. You can also provide your own custom key using [environment variable](/hosting/configuration/environment-variables/deployment) if desired.
+n8n automatically generates an encryption key upon first startup. You can also provide your own custom key using [environment variable](/hosting/configuration/environment-variables/) if desired.
The encryption key of the main n8n instance must be shared with all worker and webhooks processor nodes to ensure these worker nodes are able to access credentials stored in the database.
@@ -60,7 +61,7 @@ Set the environment variable `EXECUTIONS_MODE` to `queue` using the following co
export EXECUTIONS_MODE=queue
```
-Alternatively, you can set `executions.mode` to `queue` in the [configuration file](/hosting/configuration/#configuration-Using-file).
+Alternatively, you can set `executions.mode` to `queue` in the [configuration file](/hosting/configuration/environment-variables/).
### Start Redis
diff --git a/docs/index.md b/docs/index.md
index d04c33b16..50a1a7595 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
hide:
- path
diff --git a/docs/integrations/builtin/app-nodes/index.md b/docs/integrations/builtin/app-nodes/index.md
index a31eaa9a0..fccfd53e3 100644
--- a/docs/integrations/builtin/app-nodes/index.md
+++ b/docs/integrations/builtin/app-nodes/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.actionnetwork.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.actionnetwork.md
index d965572b7..4185f2478 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.actionnetwork.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.actionnetwork.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Action Network
description: Documentation for the Action Network node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.activecampaign.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.activecampaign.md
index dcaa67e6b..4714ecf1b 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.activecampaign.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.activecampaign.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: ActiveCampaign
description: Documentation for the ActiveCampaign node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.adalo.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.adalo.md
index c24ff880a..f15396822 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.adalo.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.adalo.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Adalo
description: Documentation for the Adalo node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.affinity.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.affinity.md
index 1428c84f0..3a27684b2 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.affinity.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.affinity.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Affinity
description: Documentation for the Affinity node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.agilecrm.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.agilecrm.md
index 9c9f003c0..4bacf391a 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.agilecrm.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.agilecrm.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Agile CRM
description: Documentation for the Agile CRM node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.airtable.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.airtable.md
index d23167b94..62dee3c02 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.airtable.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.airtable.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Airtable
description: Documentation for the Airtable node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.amqp.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.amqp.md
index 2f6cef47d..d35805f75 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.amqp.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.amqp.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AMQP Sender
description: Documentation for the AMQP Sender node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.apitemplateio.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.apitemplateio.md
index dc7a3e534..9bafe1c31 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.apitemplateio.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.apitemplateio.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: APITemplate.io
description: Documentation for the APITemplate.io node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.asana.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.asana.md
index 3106565ed..de713a921 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.asana.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.asana.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Asana
description: Documentation for the Asana node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
@@ -54,5 +55,8 @@ Due to changes in Asana's API, some operations in this node stopped working on 1
* Get a user
* Get all users
+
--8<-- "_snippets/integrations/builtin/app-nodes/operation-not-supported.md"
+
+
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.automizy.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.automizy.md
index a1d3548ba..265611cc4 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.automizy.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.automizy.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Automizy
description: Documentation for the Automizy node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.autopilot.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.autopilot.md
index 4a10f81f2..e1bdec322 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.autopilot.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.autopilot.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Autopilot
description: Documentation for the Autopilot node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscertificatemanager.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscertificatemanager.md
index 3ae88492f..67e38b713 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscertificatemanager.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscertificatemanager.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AWS Certificate Manager
description: Documentation for the AWS Certificate Manager node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscomprehend.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscomprehend.md
index e50f74bff..b5165440f 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscomprehend.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscomprehend.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AWS Comprehend
description: Documentation for the AWS Comprehend node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsdynamodb.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsdynamodb.md
index 39513c0d6..991206393 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsdynamodb.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsdynamodb.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AWS DynamoDB
description: Documentation for the AWS DynamoDB node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awselb.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awselb.md
index 49bb7c093..782385ea1 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awselb.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awselb.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AWS Elastic Load Balancing
description: Documentation for the AWS Elastic Load Balancing node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awslambda.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awslambda.md
index 81738ac21..7c127cf1c 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awslambda.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awslambda.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AWS Lambda
description: Documentation for the AWS Lambda node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsrekognition.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsrekognition.md
index 68d1aaa60..841c1ebb0 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsrekognition.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsrekognition.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AWS Rekognition
description: Documentation for the AWS Rekognition node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awss3.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awss3.md
index f35b3cf3e..295ec4a3f 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awss3.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awss3.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AWS S3
description: Documentation for the AWS S3 node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsses.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsses.md
index 6574f48e9..fe107cd30 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsses.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsses.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AWS SES
description: Documentation for the AWS SES node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssns.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssns.md
index 1b424be69..67584d2c9 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssns.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssns.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AWS SNS
description: Documentation for the AWS SNS node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssqs.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssqs.md
index 95d79a3cb..d1824f6d1 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssqs.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssqs.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AWS SQS
description: Documentation for the AWS SQS node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstextract.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstextract.md
index 5241cd593..13716142e 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstextract.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstextract.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AWS Textract
description: Documentation for the AWS Textract node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstranscribe.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstranscribe.md
index ce22deeab..daad2df8b 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstranscribe.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstranscribe.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AWS Transcribe
description: Documentation for the AWS Transcribe node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bamboohr.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bamboohr.md
index ea4a577c1..10313f494 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bamboohr.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bamboohr.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: BambooHR
description: Documentation for the BambooHR node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bannerbear.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bannerbear.md
index 946f2e206..2019143d3 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bannerbear.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bannerbear.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Bannerbear
description: Documentation for the Bannerbear node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.baserow.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.baserow.md
index 5dc8601c5..b7a64dcdc 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.baserow.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.baserow.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Baserow
description: Documentation for the Baserow node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.beeminder.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.beeminder.md
index 9cbeebab6..ef821893d 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.beeminder.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.beeminder.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Beeminder
description: Documentation for the Beeminder node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitly.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitly.md
index cd71da4a1..472c6bbe5 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitly.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitly.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Bitly
description: Documentation for the Bitly node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitwarden.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitwarden.md
index 3689f9d18..a84f7e557 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitwarden.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitwarden.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Bitwarden
description: Documentation for the Bitwarden node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.box.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.box.md
index c1b01068c..ddfcd52dc 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.box.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.box.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Box
description: Documentation for the Box node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.brandfetch.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.brandfetch.md
index 180b8d529..43d8fe013 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.brandfetch.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.brandfetch.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Brandfetch
description: Documentation for the Brandfetch node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.brevo.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.brevo.md
index 809f0467e..5be5a61d3 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.brevo.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.brevo.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Brevo
description: Documentation for the Brevo node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bubble.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bubble.md
index 49bfb2fdf..6ac242c76 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bubble.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bubble.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Bubble
description: Documentation for the Bubble node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.chargebee.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.chargebee.md
index f9a58c63f..82a40abbe 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.chargebee.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.chargebee.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Chargebee
description: Documentation for the Chargebee node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.circleci.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.circleci.md
index 82bb99a27..dd029f346 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.circleci.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.circleci.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: CircleCI
description: Documentation for the CircleCI node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.ciscowebex.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.ciscowebex.md
index 763543351..2e4dcdd54 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.ciscowebex.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.ciscowebex.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Webex by Cisco
description: Documentation for the Webex by Cisco node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.citrixadc.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.citrixadc.md
index c243124f7..115bb54fc 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.citrixadc.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.citrixadc.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Citrix ADC
description: Documentation for the Citrix ADC node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.clearbit.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.clearbit.md
index 3f286c5d7..5997e3414 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.clearbit.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.clearbit.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Clearbit
description: Documentation for the Clearbit node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.clickup.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.clickup.md
index 28d437d51..4207eadb1 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.clickup.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.clickup.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: ClickUp
description: Documentation for the ClickUp node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.clockify.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.clockify.md
index f306d0583..28cb628bb 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.clockify.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.clockify.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Clockify
description: Documentation for the Clockify node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cloudflare.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cloudflare.md
index 140ce0e6a..9168ef89f 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cloudflare.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cloudflare.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Cloudflare
description: Documentation for the Cloudflare node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cockpit.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cockpit.md
index 80b18e3b3..d63182433 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cockpit.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cockpit.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Cockpit
description: Documentation for the Cockpit node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.coda.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.coda.md
index 21c913861..704ff3900 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.coda.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.coda.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Coda
description: Documentation for the Coda node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.coingecko.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.coingecko.md
index 18276b943..2c77e3e14 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.coingecko.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.coingecko.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: CoinGecko
description: Documentation for the CoinGecko node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.contentful.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.contentful.md
index e1862fdf9..5958e5aac 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.contentful.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.contentful.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Contentful
description: Documentation for the Contentful node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.convertkit.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.convertkit.md
index 4b4537432..22f104d3f 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.convertkit.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.convertkit.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: ConvertKit
description: Documentation for the ConvertKit node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.copper.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.copper.md
index a6bda20be..a4596f74c 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.copper.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.copper.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Copper
description: Documentation for the Copper node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cortex.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cortex.md
index d9ecab42e..8d90b6aa4 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cortex.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cortex.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Cortex
description: Documentation for the Cortex node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cratedb.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cratedb.md
index da7ecacdf..fe617fe94 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cratedb.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cratedb.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: CrateDB
description: Documentation for the CrateDB node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.crowddev.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.crowddev.md
index 0a6a00166..6f2b2fbed 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.crowddev.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.crowddev.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: crowd.dev
description: Documentation for the crowd.dev node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.customerio.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.customerio.md
index dee596bee..778367c0c 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.customerio.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.customerio.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Customer.io
description: Documentation for the Customer.io node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.deepl.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.deepl.md
index 5dfd747ce..bc257a61a 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.deepl.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.deepl.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: DeepL
description: Documentation for the DeepL node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.demio.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.demio.md
index 3a3467c15..3b44ae93f 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.demio.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.demio.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Demio
description: Documentation for the Demio node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.dhl.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.dhl.md
index ddc7ece10..3c0811985 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.dhl.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.dhl.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: DHL
description: Documentation for the DHL node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.discord.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.discord.md
index c34513a38..efda68d7e 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.discord.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.discord.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Discord
description: Documentation for the Discord node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.discourse.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.discourse.md
index 52d6d5509..9b2f00a4c 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.discourse.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.discourse.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Discourse
description: Documentation for the Discourse node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.disqus.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.disqus.md
index 4555dfa12..ae92a9f64 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.disqus.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.disqus.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Disqus
description: Documentation for the Disqus node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.drift.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.drift.md
index 666d6e081..e3080d5a6 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.drift.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.drift.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Drift
description: Documentation for the Drift node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropbox.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropbox.md
index c9dd2cebd..486af6c80 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropbox.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropbox.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Dropbox
description: Documentation for the Dropbox node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropcontact.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropcontact.md
index ab9093417..08429b627 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropcontact.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropcontact.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Dropcontact
description: Documentation for the Dropcontact node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.egoi.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.egoi.md
index 3c44c9c24..b7978206d 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.egoi.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.egoi.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: E-goi
description: Documentation for the E-goi node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsearch.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsearch.md
index 3284b5aea..dd2711159 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsearch.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsearch.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Elasticsearch
description: Documentation for the Elasticsearch node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsecurity.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsecurity.md
index baab8ef23..5dfdcce19 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsecurity.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsecurity.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Elastic Security
description: Documentation for the Elastic Security node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.emelia.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.emelia.md
index a2f2c169e..738d0f69c 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.emelia.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.emelia.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Emelia
description: Documentation for the Emelia node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.erpnext.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.erpnext.md
index a64d90ec2..4075687ab 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.erpnext.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.erpnext.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: ERPNext
description: Documentation for the ERPNext node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.facebookgraphapi.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.facebookgraphapi.md
index 67f5b44f1..340a3255a 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.facebookgraphapi.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.facebookgraphapi.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Facebook Graph API
description: Documentation for the Facebook Graph API node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.filemaker.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.filemaker.md
index 3f6365db1..05ca101f4 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.filemaker.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.filemaker.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: FileMaker
description: Documentation for the FileMaker node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.flow.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.flow.md
index 4a0a0644e..149105c31 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.flow.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.flow.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Flow
description: Documentation for the Flow node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshdesk.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshdesk.md
index a7f0f1538..c82a7a1a8 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshdesk.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshdesk.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Freshdesk
description: Documentation for the Freshdesk node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshservice.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshservice.md
index fe42204d6..f75c2f130 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshservice.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshservice.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Freshservice
description: Documentation for the Freshservice node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshworkscrm.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshworkscrm.md
index 11bd1d444..b24b54620 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshworkscrm.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshworkscrm.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Freshworks CRM
description: Documentation for the Freshworks CRM node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.getresponse.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.getresponse.md
index 327e2ff8a..adc9683cc 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.getresponse.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.getresponse.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: GetResponse
description: Documentation for the GetResponse node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.ghost.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.ghost.md
index 6bb3a1b56..e6b6ea0c4 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.ghost.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.ghost.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Ghost
description: Documentation for the Ghost node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.github.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.github.md
index 4f0776d1a..f7d692a03 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.github.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.github.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: GitHub
description: Documentation for the GitHub node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gitlab.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gitlab.md
index 9feaec69a..9a8c27329 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gitlab.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gitlab.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: GitLab
description: Documentation for the GitLab node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gmail.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gmail.md
index 03324d107..ec8ec5cfb 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gmail.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gmail.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Gmail
description: Documentation for the Gmail node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleads.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleads.md
index 1ac82444c..dcaf0bd27 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleads.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleads.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Ads
description: Documentation for the Google Ads node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleanalytics.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleanalytics.md
index ad6ecd2bd..dc01499c1 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleanalytics.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleanalytics.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Analytics
description: Documentation for the Google Analytics node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebigquery.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebigquery.md
index 4d1036890..4b11d6a56 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebigquery.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebigquery.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google BigQuery
description: Documentation for the Google BigQuery node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebooks.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebooks.md
index ec9cbf79a..bc625f488 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebooks.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebooks.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Books
description: Documentation for the Google Books node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar.md
index 647fd9cde..774ef22d3 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Calendar
description: Documentation for the Google Calendar node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlechat.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlechat.md
index 3463eb0f1..bd7676efd 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlechat.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlechat.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Chat
description: Documentation for the Google Chat node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudfirestore.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudfirestore.md
index 6e3ebf34e..0a1efeb3f 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudfirestore.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudfirestore.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Cloud Firestore
description: Documentation for the Google Cloud Firestore node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudnaturallanguage.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudnaturallanguage.md
index 3f8a00c47..8fc4a6125 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudnaturallanguage.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudnaturallanguage.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Cloud Natural Language
description: Documentation for the Google Cloud Natural Language node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudrealtimedatabase.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudrealtimedatabase.md
index fd9490067..39c64412d 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudrealtimedatabase.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudrealtimedatabase.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Cloud Realtime Database
description: Documentation for the Google Cloud Realtime Database node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudstorage.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudstorage.md
index 18b372c61..bb6f3b74b 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudstorage.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudstorage.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Cloud Storage
description: Documentation for the Google Cloud Storage node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecontacts.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecontacts.md
index 73198487e..9053bb322 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecontacts.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecontacts.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Contacts
description: Documentation for the Google Contacts node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledocs.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledocs.md
index 9e2945cb5..ae604157b 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledocs.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledocs.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Docs
description: Documentation for the Google Docs node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledrive.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledrive.md
index 11891ecab..46be9d8a2 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledrive.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledrive.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Drive
description: Documentation for the Google Drive node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleperspective.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleperspective.md
index 1d1e47018..a4ac3f0eb 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleperspective.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleperspective.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Perspective
description: Documentation for the Google Perspective node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets.md
index aca54cbbb..503489442 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Sheets
description: Documentation for the Google Sheets node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleslides.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleslides.md
index bd6975bf4..3673acfd7 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleslides.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleslides.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Slides
description: Documentation for the Google Slides node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletasks.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletasks.md
index fe1f079c9..465a13d44 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletasks.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletasks.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Tasks
description: Documentation for the Google Tasks node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletranslate.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletranslate.md
index dce855e18..a1b85a183 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletranslate.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletranslate.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Translate
description: Documentation for the Google Translate node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotify.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotify.md
index 260e11077..112230d75 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotify.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotify.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Gotify
description: Documentation for the Gotify node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotowebinar.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotowebinar.md
index 3192417e5..1ee37a978 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotowebinar.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotowebinar.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: GoToWebinar
description: Documentation for the GoToWebinar node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.grafana.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.grafana.md
index cf7b50f4f..0cb8fe82b 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.grafana.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.grafana.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Grafana
description: Documentation for the Grafana node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.grist.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.grist.md
index fa0a4535f..07da6e3e2 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.grist.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.grist.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Grist
description: Documentation for the Grist node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gsuiteadmin.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gsuiteadmin.md
index 2d0f11387..e57f96d7a 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gsuiteadmin.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gsuiteadmin.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: G Suite Admin
description: Documentation for the G Suite Admin node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.hackernews.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.hackernews.md
index f1e4ffd10..b3ceaf15a 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.hackernews.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.hackernews.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Hacker News
description: Documentation for the Hacker News node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.halopsa.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.halopsa.md
index 443e9b01e..e7595a948 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.halopsa.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.halopsa.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: HaloPSA
description: Documentation for the HaloPSA node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.harvest.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.harvest.md
index 77d448e69..b02b5ce6d 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.harvest.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.harvest.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Harvest
description: Documentation for the Harvest node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.helpscout.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.helpscout.md
index d39d34983..e5aeafb83 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.helpscout.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.helpscout.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Help Scout
description: Documentation for the Help Scout node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.highlevel.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.highlevel.md
index 200644d88..f3fe333b2 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.highlevel.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.highlevel.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: HighLevel
description: Documentation for the HighLevel node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.homeassistant.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.homeassistant.md
index 975e3de3d..41f2eb120 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.homeassistant.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.homeassistant.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Home Assistant
description: Documentation for the Home Assistant node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.hubspot.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.hubspot.md
index e52ee3129..776ac169d 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.hubspot.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.hubspot.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: HubSpot
description: Documentation for the HubSpot node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.humanticai.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.humanticai.md
index 67efbc43a..bfddfc96d 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.humanticai.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.humanticai.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Humantic AI
description: Documentation for the Humantic AI node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.hunter.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.hunter.md
index 341f72347..22f1b38b1 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.hunter.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.hunter.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Hunter
description: Documentation for the Hunter node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.intercom.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.intercom.md
index c88ad7093..67660b9c1 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.intercom.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.intercom.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Intercom
description: Documentation for the Intercom node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.invoiceninja.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.invoiceninja.md
index 93e27d9a8..cb5070d00 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.invoiceninja.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.invoiceninja.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Invoice Ninja
description: Documentation for the Invoice Ninja node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.iterable.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.iterable.md
index 5ca15c156..bfaf2a52c 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.iterable.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.iterable.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Iterable
description: Documentation for the Iterable node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.jenkins.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.jenkins.md
index 89ae0349d..fde176001 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.jenkins.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.jenkins.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Jenkins
description: Documentation for the Jenkins node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.jira.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.jira.md
index 4e60c3bb7..6bd0bbb03 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.jira.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.jira.md
@@ -1,10 +1,11 @@
---
-title: Jira
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
+title: Jira Software
description: Documentation for the Jira node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
---
-# Jira
+# Jira Software
Use the Jira node to automate work in Jira, and integrate Jira with other applications. n8n has built-in support for a wide range of Jira features, including creating, updating, deleting, and getting issues, and users.
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.kafka.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.kafka.md
index d1ce22ee3..a1a08f957 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.kafka.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.kafka.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Kafka
description: Documentation for the Kafka node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.keap.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.keap.md
index 3bf828e37..bfd2ab3a0 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.keap.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.keap.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Keap
description: Documentation for the Keap node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.kitemaker.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.kitemaker.md
index 02780b23a..f26de0a88 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.kitemaker.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.kitemaker.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Kitemaker
description: Documentation for the Kitemaker node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.kobotoolbox.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.kobotoolbox.md
index 625d6b891..01a951004 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.kobotoolbox.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.kobotoolbox.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: KoboToolbox
description: Documentation for the KoboToolbox node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.lemlist.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.lemlist.md
index eaeb45d87..926a9f144 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.lemlist.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.lemlist.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Lemlist
description: Documentation for the Lemlist node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.line.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.line.md
index 359b86e3c..439e81934 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.line.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.line.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Line
description: Documentation for the Line node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.linear.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.linear.md
index 7d43c6240..302895875 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.linear.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.linear.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Linear
description: Documentation for the Linear node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.lingvanex.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.lingvanex.md
index 63aeb453c..ac951c345 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.lingvanex.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.lingvanex.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: LingvaNex
description: Documentation for the LingvaNex node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.linkedin.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.linkedin.md
index cc560daf5..452c6d99d 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.linkedin.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.linkedin.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: LinkedIn
description: Documentation for the LinkedIn node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.lonescale.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.lonescale.md
index 92e7df87b..4af128f36 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.lonescale.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.lonescale.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: LoneScale
description: Documentation for the LoneScale node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.magento2.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.magento2.md
index 693839e28..0197876ce 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.magento2.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.magento2.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Magento 2
description: Documentation for the Magento 2 node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailcheck.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailcheck.md
index 8fcd91af4..c003a9074 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailcheck.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailcheck.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mailcheck
description: Documentation for the Mailcheck node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailchimp.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailchimp.md
index 2c2a6b913..95fb53d1a 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailchimp.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailchimp.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mailchimp
description: Documentation for the Mailchimp node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailerlite.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailerlite.md
index fffd0b120..29cc3a654 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailerlite.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailerlite.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MailerLite
description: Documentation for the MailerLite node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailgun.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailgun.md
index f8edbd835..9cc51f804 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailgun.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailgun.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mailgun
description: Documentation for the Mailgun node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailjet.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailjet.md
index 86e13f1f1..b0822bc70 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailjet.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mailjet.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mailjet
description: Documentation for the Mailjet node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mandrill.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mandrill.md
index a798e1afd..d0852b827 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mandrill.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mandrill.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mandrill
description: Documentation for the Mandrill node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.marketstack.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.marketstack.md
index 617f66869..637ec5988 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.marketstack.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.marketstack.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: marketstack
description: Documentation for the marketstack node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.matrix.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.matrix.md
index 969485817..e47c4c325 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.matrix.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.matrix.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Matrix
description: Documentation for the Matrix node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mattermost.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mattermost.md
index 5434978a0..86e025535 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mattermost.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mattermost.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mattermost
description: Documentation for the Mattermost node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mautic.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mautic.md
index 2a83f6a69..5780ae779 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mautic.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mautic.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mautic
description: Documentation for the Mautic node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.medium.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.medium.md
index 1bfad9137..f036691d7 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.medium.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.medium.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Medium
description: Documentation for the Medium node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.messagebird.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.messagebird.md
index 754e64599..de1413dcc 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.messagebird.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.messagebird.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MessageBird
description: Documentation for the MessageBird node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.metabase.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.metabase.md
index 4dd3566f2..ac698753b 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.metabase.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.metabase.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Metabase
description: Documentation for the Metabase node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftdynamicscrm.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftdynamicscrm.md
index e64c6514c..6005c6536 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftdynamicscrm.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftdynamicscrm.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Microsoft Dynamics CRM
description: Documentation for the Microsoft Dynamics CRM node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftexcel.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftexcel.md
index b1d62dbb5..de5c57cea 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftexcel.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftexcel.md
@@ -1,10 +1,11 @@
---
-title: Microsoft Excel
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
+title: Microsoft Excel 365
description: Documentation for the Microsoft Excel node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
---
-# Microsoft Excel
+# Microsoft Excel 365
Use the Microsoft Excel node to automate work in Microsoft Excel, and integrate Microsoft Excel with other applications. n8n has built-in support for a wide range of Microsoft Excel features, including adding and retrieving lists of table data, and workbooks, as well as getting worksheets.
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftgraphsecurity.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftgraphsecurity.md
index a77ab1f3a..ee335bfcc 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftgraphsecurity.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftgraphsecurity.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Microsoft Graph Security
description: Documentation for the Microsoft Graph Security node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftonedrive.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftonedrive.md
index ca40dc3fc..450fa3800 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftonedrive.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftonedrive.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Microsoft OneDrive
description: Documentation for the Microsoft OneDrive node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftoutlook.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftoutlook.md
index 3b6ff778c..124b6d9ce 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftoutlook.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftoutlook.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Microsoft Outlook
description: Documentation for the Microsoft Outlook node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftsql.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftsql.md
index f7a5071d2..7dd19a5c6 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftsql.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftsql.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Microsoft SQL
description: Documentation for the Microsoft SQL node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftteams.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftteams.md
index 4e0e14d58..525d72ff1 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftteams.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsoftteams.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Microsoft Teams
description: Documentation for the Microsoft Teams node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsofttodo.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsofttodo.md
index 808b5424a..c099caf6f 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsofttodo.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.microsofttodo.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Microsoft To Do
description: Documentation for the Microsoft To Do node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mindee.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mindee.md
index 3c85c4e5a..45f373bd4 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mindee.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mindee.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mindee
description: Documentation for the Mindee node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.misp.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.misp.md
index 055600848..d32ba3cc4 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.misp.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.misp.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MISP
description: Documentation for the MISP node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mocean.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mocean.md
index 6efe131f8..7e0df2050 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mocean.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mocean.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mocean
description: Documentation for the Mocean node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mondaycom.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mondaycom.md
index 965a70f90..156b15a6e 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mondaycom.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mondaycom.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: monday.com
description: Documentation for the monday.com node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mongodb.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mongodb.md
index b653637d4..4ba70a6bc 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mongodb.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mongodb.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MongoDB
description: Documentation for the MongoDB node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.monicacrm.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.monicacrm.md
index 99d74bab1..b0b292cd2 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.monicacrm.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.monicacrm.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Monica CRM
description: Documentation for the Monica CRM node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mqtt.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mqtt.md
index 0e06be5f8..ed25c5355 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mqtt.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mqtt.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MQTT
description: Documentation for the MQTT node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.msg91.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.msg91.md
index b06febbb2..669152cf2 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.msg91.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.msg91.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MSG91
description: Documentation for the MSG91 node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mysql.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mysql.md
index a9078b06b..a543c964c 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.mysql.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.mysql.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MySQL
description: Documentation for the MySQL node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.n8ntrainingcustomerdatastore.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.n8ntrainingcustomerdatastore.md
index cb98caa30..4f0d81c69 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.n8ntrainingcustomerdatastore.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.n8ntrainingcustomerdatastore.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Customer Datastore (n8n Training)
description: Documentation for the Customer Datastore (n8n Training) node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.n8ntrainingcustomermessenger.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.n8ntrainingcustomermessenger.md
index 3ff357531..9a192b923 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.n8ntrainingcustomermessenger.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.n8ntrainingcustomermessenger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Customer Messenger (n8n Training)
description: Documentation for the Customer Messenger (n8n Training) node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.nasa.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.nasa.md
index bf416f45b..5892f1e98 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.nasa.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.nasa.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: NASA
description: Documentation for the NASA node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.netlify.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.netlify.md
index 2dee79568..768e1165a 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.netlify.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.netlify.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Netlify
description: Documentation for the Netlify node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.nextcloud.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.nextcloud.md
index 42252da0e..8e8d8fb6c 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.nextcloud.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.nextcloud.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Nextcloud
description: Documentation for the Nextcloud node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.nocodb.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.nocodb.md
index efb2cd09d..27e89677b 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.nocodb.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.nocodb.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: NocoDB
description: Documentation for the NocoDB node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.notion.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.notion.md
index 036c61804..5d9b0f058 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.notion.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.notion.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Notion
description: Documentation for the Notion node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.npm.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.npm.md
index 5f0875567..be6e73fa6 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.npm.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.npm.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: npm
description: Documentation for the npm node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.odoo.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.odoo.md
index b718d5c8c..50f7bce8d 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.odoo.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.odoo.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Odoo
description: Documentation for the Odoo node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.onesimpleapi.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.onesimpleapi.md
index 7b6d5c666..2913223fb 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.onesimpleapi.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.onesimpleapi.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: One Simple API
description: Documentation for the One Simple API node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.onfleet.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.onfleet.md
index d81d4a1e2..8c189d32f 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.onfleet.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.onfleet.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Onfleet
description: Documentation for the Onfleet node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.openthesaurus.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.openthesaurus.md
index fa4ab5a53..bbb2bebb2 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.openthesaurus.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.openthesaurus.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: OpenThesaurus
description: Documentation for the OpenThesaurus node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.openweathermap.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.openweathermap.md
index c5be8931e..391b06b1c 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.openweathermap.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.openweathermap.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: OpenWeatherMap
description: Documentation for the OpenWeatherMap node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.orbit.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.orbit.md
index 8ef5bd6b9..2f61e23c4 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.orbit.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.orbit.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Orbit
description: Documentation for the Orbit node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.oura.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.oura.md
index a242c2ed9..8a56f9231 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.oura.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.oura.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Oura
description: Documentation for the Oura node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.paddle.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.paddle.md
index 0b7e86c8e..95ddbbe66 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.paddle.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.paddle.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Paddle
description: Documentation for the Paddle node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.pagerduty.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.pagerduty.md
index 5d89cc469..dada93471 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.pagerduty.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.pagerduty.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: PagerDuty
description: Documentation for the PagerDuty node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.paypal.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.paypal.md
index dd1aeb16f..6071b64fd 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.paypal.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.paypal.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: PayPal
description: Documentation for the PayPal node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.peekalink.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.peekalink.md
index 298aaecd0..6065473ba 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.peekalink.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.peekalink.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Peekalink
description: Documentation for the Peekalink node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.phantombuster.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.phantombuster.md
index ba773cbc7..7ddacd20a 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.phantombuster.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.phantombuster.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: PhantomBuster
description: Documentation for the PhantomBuster node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.philipshue.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.philipshue.md
index 21a4fd13a..d9dddde91 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.philipshue.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.philipshue.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Philips Hue
description: Documentation for the Philips Hue node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.pipedrive.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.pipedrive.md
index 095ef66f4..e6f05b22d 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.pipedrive.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.pipedrive.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Pipedrive
description: Documentation for the Pipedrive node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.plivo.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.plivo.md
index c89ec893a..924db5a27 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.plivo.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.plivo.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Plivo
description: Documentation for the Plivo node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.postbin.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.postbin.md
index 95723d07e..de0b056d3 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.postbin.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.postbin.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: PostBin
description: Documentation for the PostBin node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.postgres.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.postgres.md
index b8868fa32..0060895dc 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.postgres.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.postgres.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Postgres
description: Documentation for the Postgres node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.posthog.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.posthog.md
index 1879d7ec9..d77ae9561 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.posthog.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.posthog.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: PostHog
description: Documentation for the PostHog node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.profitwell.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.profitwell.md
index 57e2b0d81..d0a5d18d7 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.profitwell.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.profitwell.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: ProfitWell
description: Documentation for the ProfitWell node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.pushbullet.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.pushbullet.md
index ce8fd43b9..9c459bd2c 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.pushbullet.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.pushbullet.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Pushbullet
description: Documentation for the Pushbullet node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.pushcut.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.pushcut.md
index 2f0941637..513335d1c 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.pushcut.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.pushcut.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Pushcut
description: Documentation for the Pushcut node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.pushover.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.pushover.md
index bb379be5d..e1bd90c0e 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.pushover.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.pushover.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Pushover
description: Documentation for the Pushover node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.questdb.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.questdb.md
index de78e47b4..57e817c37 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.questdb.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.questdb.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: QuestDB
description: Documentation for the QuestDB node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.quickbase.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.quickbase.md
index c4b05c299..ed8826086 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.quickbase.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.quickbase.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Quick Base
description: Documentation for the Quick Base node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.quickbooks.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.quickbooks.md
index 00de6f357..a0f772f5c 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.quickbooks.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.quickbooks.md
@@ -1,10 +1,11 @@
---
-title: QuickBooks
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
+title: QuickBooks Online
description: Documentation for the QuickBooks node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
---
-# QuickBooks
+# QuickBooks Online
Use the QuickBooks node to automate work in QuickBooks, and integrate QuickBooks with other applications. n8n has built-in support for a wide range of QuickBooks features, including creating, updating, deleting, and getting bills, customers, employees, estimates, and invoices.
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.quickchart.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.quickchart.md
index 23ce5781c..4914423fe 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.quickchart.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.quickchart.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: QuickChart
description: Documentation for the QuickChart node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.rabbitmq.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.rabbitmq.md
index af9d5e288..cb951d1aa 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.rabbitmq.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.rabbitmq.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: RabbitMQ
description: Documentation for the RabbitMQ node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.raindrop.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.raindrop.md
index 1426fefe2..56cb9c407 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.raindrop.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.raindrop.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Raindrop
description: Documentation for the Raindrop node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.reddit.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.reddit.md
index 2993654e8..cc1cfab70 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.reddit.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.reddit.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Reddit
description: Documentation for the Reddit node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.redis.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.redis.md
index f41bd647f..2f666894a 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.redis.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.redis.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Redis
description: Documentation for the Redis node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.rocketchat.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.rocketchat.md
index 192588213..51bb34345 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.rocketchat.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.rocketchat.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Rocket.Chat
description: Documentation for the Rocket.Chat node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.rundeck.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.rundeck.md
index ca809f8ef..2c7bd51cb 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.rundeck.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.rundeck.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Rundeck
description: Documentation for the Rundeck node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.s3.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.s3.md
index e16c0627d..883c0ff47 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.s3.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.s3.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: S3
description: Documentation for the S3 node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.salesforce.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.salesforce.md
index ea9bd39f1..a03de728e 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.salesforce.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.salesforce.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Salesforce
description: Documentation for the Salesforce node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.salesmate.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.salesmate.md
index 59d65c897..f59675aa2 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.salesmate.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.salesmate.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Salesmate
description: Documentation for the Salesmate node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.seatable.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.seatable.md
index 556e50474..c37b1a3d7 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.seatable.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.seatable.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SeaTable
description: Documentation for the SeaTable node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.securityscorecard.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.securityscorecard.md
index bf91a1d03..f8dc50aac 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.securityscorecard.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.securityscorecard.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SecurityScorecard
description: Documentation for the SecurityScorecard node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.segment.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.segment.md
index 1a181194f..7829d4fa5 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.segment.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.segment.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Segment
description: Documentation for the Segment node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.sendgrid.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.sendgrid.md
index a467abb16..0c186bde7 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.sendgrid.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.sendgrid.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SendGrid
description: Documentation for the SendGrid node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.sendy.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.sendy.md
index dd5edf3e6..eb102f79d 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.sendy.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.sendy.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Sendy
description: Documentation for the Sendy node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.sentryio.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.sentryio.md
index b65542591..302566b07 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.sentryio.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.sentryio.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Sentry.io
description: Documentation for the Sentry.io node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.servicenow.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.servicenow.md
index 40a56a60c..65421fa30 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.servicenow.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.servicenow.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: ServiceNow
description: Documentation for the ServiceNow node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.shopify.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.shopify.md
index 14fe3385b..15da25272 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.shopify.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.shopify.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Shopify
description: Documentation for the Shopify node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.signl4.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.signl4.md
index 249c55bdd..66a57e76c 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.signl4.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.signl4.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SIGNL4
description: Documentation for the SIGNL4 node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.slack.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.slack.md
index a827ceeaf..55e8e7176 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.slack.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.slack.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Slack
description: Documentation for the Slack node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.sms77.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.sms77.md
index 06aa367a8..5d8aac02f 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.sms77.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.sms77.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: seven
description: Documentation for the seven node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.snowflake.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.snowflake.md
index 0594353fa..294cca4e4 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.snowflake.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.snowflake.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Snowflake
description: Documentation for the Snowflake node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.splunk.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.splunk.md
index c2aeb6cc6..38aa0c58d 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.splunk.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.splunk.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Splunk
description: Documentation for the Splunk node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.spontit.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.spontit.md
index 043756004..cc68d137c 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.spontit.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.spontit.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Spontit
description: Documentation for the Spontit node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.spotify.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.spotify.md
index 0ed3ac6fe..0f531d995 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.spotify.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.spotify.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Spotify
description: Documentation for the Spotify node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.stackby.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.stackby.md
index 7f7c16f88..c87433e20 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.stackby.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.stackby.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Stackby
description: Documentation for the Stackby node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.storyblok.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.storyblok.md
index 2c166cc07..d8c9acdef 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.storyblok.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.storyblok.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Storyblok
description: Documentation for the Storyblok node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.strapi.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.strapi.md
index c95b5a43a..53fc2bb70 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.strapi.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.strapi.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Strapi
description: Documentation for the Strapi node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.strava.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.strava.md
index b217ece80..f8b6afbd7 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.strava.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.strava.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Strava
description: Documentation for the Strava node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.stripe.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.stripe.md
index 8515eff9b..187ee6123 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.stripe.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.stripe.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Stripe
description: Documentation for the Stripe node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.supabase.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.supabase.md
index 24ee4c223..95d27f09d 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.supabase.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.supabase.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Supabase
description: Documentation for the Supabase node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.syncromsp.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.syncromsp.md
index b73b4f9ac..ed31d2490 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.syncromsp.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.syncromsp.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SyncroMSP
description: Documentation for the SyncroMSP node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.taiga.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.taiga.md
index 1776ca447..0b78e5f82 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.taiga.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.taiga.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Taiga
description: Documentation for the Taiga node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.tapfiliate.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.tapfiliate.md
index 802285c43..8607f72bb 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.tapfiliate.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.tapfiliate.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Tapfiliate
description: Documentation for the Tapfiliate node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.telegram.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.telegram.md
index 9f66a5b22..607547d99 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.telegram.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.telegram.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Telegram
description: Documentation for the Telegram node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.thehive.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.thehive.md
index a44dfa8fa..f1fc76315 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.thehive.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.thehive.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: TheHive
description: Documentation for the TheHive node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.thehive5.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.thehive5.md
index 327abc1a7..8588f3917 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.thehive5.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.thehive5.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: TheHive 5
description: Documentation for the TheHive5 node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.timescaledb.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.timescaledb.md
index b82574340..bd7e8b70d 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.timescaledb.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.timescaledb.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: TimescaleDB
description: Documentation for the TimescaleDB node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.todoist.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.todoist.md
index b90380fab..661eb2291 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.todoist.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.todoist.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Todoist
description: Documentation for the Todoist node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.travisci.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.travisci.md
index b3433ce31..a637c8d7f 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.travisci.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.travisci.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Travis CI
description: Documentation for the Travis CI node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.trello.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.trello.md
index 6c129e5d9..3c44b3bc9 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.trello.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.trello.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Trello
description: Documentation for the Trello node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.twake.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.twake.md
index a9a82b502..79c32eac6 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.twake.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.twake.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Twake
description: Documentation for the Twake node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.twilio.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.twilio.md
index 6404e19b3..f48a8e17f 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.twilio.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.twilio.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Twilio
description: Documentation for the Twilio node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.twist.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.twist.md
index 92e90be6c..e29e2ddfd 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.twist.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.twist.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Twist
description: Documentation for the Twist node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.twitter.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.twitter.md
index 6dd378faa..a55fd85de 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.twitter.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.twitter.md
@@ -1,10 +1,11 @@
---
-title: X
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
+title: X (Formerly Twitter)
description: Documentation for the X node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
---
-# X
+# X (Formerly Twitter)
Use the X node to automate work in X and integrate X with other applications. n8n has built-in support for a wide range of X features, including creating direct messages and deleting, searching, liking, and retweeting a tweet.
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.unleashedsoftware.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.unleashedsoftware.md
index 1afc381d2..6e9530c12 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.unleashedsoftware.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.unleashedsoftware.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Unleashed Software
description: Documentation for the Unleashed Software node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.uplead.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.uplead.md
index c901208ab..ee652f1d9 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.uplead.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.uplead.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: UpLead
description: Documentation for the UpLead node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.uproc.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.uproc.md
index 7b202c78d..9b57e0832 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.uproc.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.uproc.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: uProc
description: Documentation for the uProc node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.uptimerobot.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.uptimerobot.md
index 102d6185a..624d6a313 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.uptimerobot.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.uptimerobot.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: UptimeRobot
description: Documentation for the UptimeRobot node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.urlscanio.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.urlscanio.md
index 767727e04..41e8a01a6 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.urlscanio.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.urlscanio.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: urlscan.io
description: Documentation for the urlscan.io node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.venafitlsprotectcloud.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.venafitlsprotectcloud.md
index 58bdc206f..875744974 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.venafitlsprotectcloud.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.venafitlsprotectcloud.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Venafi TLS Protect Cloud
description: Documentation for the Venafi TLS Protect Cloud node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.venafitlsprotectdatacenter.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.venafitlsprotectdatacenter.md
index 59745bfc6..ec56b7499 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.venafitlsprotectdatacenter.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.venafitlsprotectdatacenter.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Venafi TLS Protect Datacenter
description: Documentation for the Venafi TLS Protect Datacenter node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.vero.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.vero.md
index 8fc746072..bb477745c 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.vero.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.vero.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Vero
description: Documentation for the Vero node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.vonage.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.vonage.md
index bf7e902d8..cba713d88 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.vonage.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.vonage.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Vonage
description: Documentation for the Vonage node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.webflow.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.webflow.md
index 9e291ca61..85c3264ef 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.webflow.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.webflow.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Webflow
description: Documentation for the Webflow node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.wekan.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.wekan.md
index 6f23da0a2..111d25b3f 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.wekan.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.wekan.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: WeKan
description: Documentation for the WeKan node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.whatsapp.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.whatsapp.md
index 400671f60..dac40e49a 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.whatsapp.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.whatsapp.md
@@ -1,10 +1,11 @@
---
-title: WhatsApp Business Platform
-description: Documentation for the WhatsApp Business Platform node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
+title: WhatsApp Business Cloud
+description: Documentation for the WhatsApp Business Cloud node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
---
-# WhatsApp Business Platform
+# WhatsApp Business Cloud
Use the WhatsApp Business node to automate work in WhatsApp Business, and integrate WhatsApp Business with other applications. n8n has built-in support for a wide range of WhatsApp Business features, including sending messages, and uploading, downloading, and deleting media.
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.wise.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.wise.md
index fd0f69853..f6b0a4f2b 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.wise.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.wise.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Wise
description: Documentation for the Wise node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.woocommerce.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.woocommerce.md
index 54c606f01..d15e8ea5b 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.woocommerce.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.woocommerce.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: WooCommerce
description: Documentation for the WooCommerce node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.wordpress.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.wordpress.md
index 9e1e530b5..8c8e70944 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.wordpress.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.wordpress.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: WordPress
description: Documentation for the WordPress node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.xero.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.xero.md
index f8208690b..0e27540c9 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.xero.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.xero.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Xero
description: Documentation for the Xero node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.yourls.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.yourls.md
index 3eec8d992..68c2b7f08 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.yourls.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.yourls.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Yourls
description: Documentation for the Yourls node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.youtube.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.youtube.md
index 0855398d5..28c7d1ce1 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.youtube.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.youtube.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: YouTube
description: Documentation for the YouTube node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.zammad.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.zammad.md
index 26130afc7..a9befcf1b 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.zammad.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.zammad.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Zammad
description: Documentation for the Zammad node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.zendesk.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.zendesk.md
index 0e4536e7d..812f2c814 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.zendesk.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.zendesk.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Zendesk
description: Documentation for the Zendesk node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.zohocrm.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.zohocrm.md
index a34c3ffc2..619ac72b1 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.zohocrm.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.zohocrm.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Zoho CRM
description: Documentation for the Zoho CRM node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.zoom.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.zoom.md
index 3f559e351..7088d979a 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.zoom.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.zoom.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Zoom
description: Documentation for the Zoom node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.zulip.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.zulip.md
index f8b803252..70e7e9a26 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.zulip.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.zulip.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Zulip
description: Documentation for the Zulip node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-langchain.openai.md b/docs/integrations/builtin/app-nodes/n8n-nodes-langchain.openai.md
index 2ab220106..cf90e3187 100644
--- a/docs/integrations/builtin/app-nodes/n8n-nodes-langchain.openai.md
+++ b/docs/integrations/builtin/app-nodes/n8n-nodes-langchain.openai.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: OpenAI
description: Documentation for the OpenAI node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/cluster-nodes/index.md b/docs/integrations/builtin/cluster-nodes/index.md
index 16f0dd2fe..8b6c49274 100644
--- a/docs/integrations/builtin/cluster-nodes/index.md
+++ b/docs/integrations/builtin/cluster-nodes/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
title: Cluster nodes
description: Understand cluster nodes in n8n, and browse the cluster nodes library.
diff --git a/docs/integrations/builtin/cluster-nodes/root-nodes/index.md b/docs/integrations/builtin/cluster-nodes/root-nodes/index.md
index 7fb801a9a..9ae518aaf 100644
--- a/docs/integrations/builtin/cluster-nodes/root-nodes/index.md
+++ b/docs/integrations/builtin/cluster-nodes/root-nodes/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
title: Root nodes
description: Understand root nodes in n8n, and browse the root nodes library.
diff --git a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent.md b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent.md
index 37486b414..fb1e18f92 100644
--- a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent.md
+++ b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent.md
@@ -1,18 +1,17 @@
---
-title: Agent
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
+title: AI Agent
description: Documentation for the Agent node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
-# Agent
+# AI Agent
+
+
Use the Agent node to set which agent type you want to use.
On this page, you'll find the node parameters for the Agent node, and links to more resources.
-/// note | Examples and templates
-For usage examples and templates to help you get started, refer to n8n's [Agent integrations](https://n8n.io/integrations/agent/){:target=_blank .external-link} page.
-///
-
/// note | Connect a tool
You must connect at least one tool sub-node.
///
@@ -206,9 +205,11 @@ The input from the chat. This is the user's query, also known as the prompt.
--8<-- "_snippets/integrations/builtin/cluster-nodes/langchain-root-nodes/return-intermediate-steps.md"
-## Related resources
+## Templates and examples
-View [example workflows and related content](https://n8n.io/integrations/agent/){:target=_blank .external-link} on n8n's website.
+[[ templatesWidget(title, page) ]]
+
+## Related resources
Refer to [LangChain's documentation on agents](https://js.langchain.com/docs/modules/agents/agent_types/){:target=_blank .external-link} for more information about the service.
diff --git a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm.md b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm.md
index 0458bd5c3..fb320b25b 100644
--- a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm.md
+++ b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Basic LLM Chain
description: Documentation for the Basic LLM Chain node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainretrievalqa.md b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainretrievalqa.md
index c49b4a78c..d17e5fa9b 100644
--- a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainretrievalqa.md
+++ b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainretrievalqa.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Question and Answer Chain
description: Documentation for the Question and Answer Chain node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainsummarization.md b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainsummarization.md
index c16bc16da..7a6e5a6b7 100644
--- a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainsummarization.md
+++ b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainsummarization.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Summarization Chain
description: Documentation for the Summarization Chain node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.code.md b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.code.md
index ac2da7750..eb3de2419 100644
--- a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.code.md
+++ b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.code.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: LangChain Code
description: Documentation for the LangChain Code node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreinmemory.md b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreinmemory.md
index 38cad75cc..0a8d193b7 100644
--- a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreinmemory.md
+++ b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreinmemory.md
@@ -1,9 +1,10 @@
---
-title: In Memory Vector Store
-description: Documentation for the In Memory Vector Store node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
+title: In-Memory Vector Store
+description: Documentation for the In-Memory Vector Store node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
-# In Memory Vector Store
+# In-Memory Vector Store
Use the In Memory Vector Store node to store and retrieve embeddings in n8n's in-app memory.
diff --git a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepinecone.md b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepinecone.md
index fc2723445..e5bcd01c5 100644
--- a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepinecone.md
+++ b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepinecone.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Pinecone Vector Store
description: Documentation for the Pinecone node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
@@ -53,7 +54,7 @@ Available in **Insert Documents** mode. Deletes all data from the namespace befo
## Related resources
-View [example workflows and related content](https://n8n.io/integrations/pinecone-insert/){:target=_blank .external-link} on n8n's website.
+View [example workflows and related content](https://n8n.io/integrations/pinecone-vector-store/){:target=_blank .external-link} on n8n's website.
Refer to [LangChain's Pinecone documentation](https://js.langchain.com/docs/modules/data_connection/vectorstores/integrations/pinecone){:target=_blank .external-link} for more information about the service.
diff --git a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreqdrant.md b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreqdrant.md
index bfa16ded9..bb7ee522a 100644
--- a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreqdrant.md
+++ b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreqdrant.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Qdrant Vector Store
description: Documentation for the Qdrant node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase.md b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase.md
index 42dcee794..50519f4be 100644
--- a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase.md
+++ b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Supabase Vector Store
description: Documentation for the Supabase node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorezep.md b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorezep.md
index 3bb6022a0..78a005db8 100644
--- a/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorezep.md
+++ b/docs/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorezep.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Zep Vector Store
description: Documentation for the Zep Vector Store node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/index.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/index.md
index d1fd6eb59..e7addbddf 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/index.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
title: Sub-nodes
description: Understand sub-nodes in n8n, and browse the sub-nodes library.
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentdefaultdataloader.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentdefaultdataloader.md
index f29cf709f..e195e0dce 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentdefaultdataloader.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentdefaultdataloader.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Default Data Loader
description: Documentation for the Default Data Loader node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentgithubloader.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentgithubloader.md
index 6d170af22..aa2b53876 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentgithubloader.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentgithubloader.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: GitHub Document Loader
description: Documentation for the GitHub Document Loader node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsawsbedrock.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsawsbedrock.md
index d3ee02398..3ffb741ff 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsawsbedrock.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsawsbedrock.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Embeddings AWS Bedrock
description: Documentation for the Embeddings AWS Bedrock node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsazureopenai.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsazureopenai.md
index f94646c66..effa7f5b4 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsazureopenai.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsazureopenai.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Embeddings Azure OpenAI
description: Documentation for the Embeddings Azure OpenAI node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingscohere.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingscohere.md
index e80b14b00..bfa7349fa 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingscohere.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingscohere.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Embeddings Cohere
description: Documentation for the Embeddings Cohere node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsgooglegemini.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsgooglegemini.md
index c583d8df4..2ec0a60af 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsgooglegemini.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsgooglegemini.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Embeddings Google Gemini
description: Documentation for the Embeddings Google Gemini node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsgooglepalm.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsgooglepalm.md
index 0a75a2c0e..03e44acaf 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsgooglepalm.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsgooglepalm.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Embeddings Google PaLM
description: Documentation for the Embeddings Google PaLM node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingshuggingfaceinference.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingshuggingfaceinference.md
index df34f364a..9a9e0a868 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingshuggingfaceinference.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingshuggingfaceinference.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Embeddings HuggingFace Inference
description: Documentation for the Embeddings HuggingFace Inference node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsmistralcloud.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsmistralcloud.md
index 7b45d97d8..2fbc7aa9f 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsmistralcloud.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsmistralcloud.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Embeddings Mistral Cloud
description: Documentation for the Embeddings Mistral Cloud node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsollama.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsollama.md
index 7b1b78b0f..7a6ad7057 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsollama.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsollama.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Embeddings Ollama
description: Documentation for the Embeddings Ollama node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsopenai.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsopenai.md
index 675cd66c9..422733e98 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsopenai.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsopenai.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Embeddings OpenAI
description: Documentation for the Embeddings OpenAI node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic.md
index e53c45fce..8efa92438 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Anthropic Chat Model
description: Documentation for the Anthropic Chat Model node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatawsbedrock.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatawsbedrock.md
index 16e0f37de..fb31804fc 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatawsbedrock.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatawsbedrock.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AWS Bedrock Chat Model
description: Documentation for the AWS Bedrock Chat Model node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatazureopenai.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatazureopenai.md
index 1a18ec798..7e2d8cc52 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatazureopenai.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatazureopenai.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Azure OpenAI Chat Model
description: Documentation for the OpenAI Chat Model node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgooglegemini.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgooglegemini.md
index cd32480e0..c89c28722 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgooglegemini.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgooglegemini.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Gemini Chat Model
description: Documentation for the Google Gemini Chat Model node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgooglepalm.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgooglepalm.md
index 7b93efca6..cad2edeb4 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgooglepalm.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgooglepalm.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google PaLM Chat Model
description: Documentation for the Google PaLM Chat Model node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgroq.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgroq.md
index c6f794896..c8180888d 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgroq.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgroq.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Groq Chat Model
description: Documentation for the Groq Chat Model node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatmistralcloud.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatmistralcloud.md
index 9b98a4b73..44bc3554f 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatmistralcloud.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatmistralcloud.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mistral Cloud Chat Model
description: Documentation for the Mistral Cloud Chat Model node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatollama.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatollama.md
index 4a5c15b60..195a9453a 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatollama.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatollama.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Ollama Chat Model
description: Documentation for the Ollama Chat Model node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai.md
index 3559c164a..f08c29199 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: OpenAI Chat Model
description: Documentation for the OpenAI Chat Model node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmcohere.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmcohere.md
index c2996050f..fa44942f3 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmcohere.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmcohere.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Cohere Model
description: Documentation for the Cohere Model node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmgooglepalm.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmgooglepalm.md
index 00b22b396..4fddbdafa 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmgooglepalm.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmgooglepalm.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google PaLM Language Model
description: Documentation for the Google PaLM Language Model node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmollama.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmollama.md
index b56c1e978..64c33ae92 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmollama.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmollama.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Ollama Model
description: Documentation for the Ollama Model node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmopenai.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmopenai.md
index c4cf4f13b..fbe389da7 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmopenai.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmopenai.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: OpenAI Model
description: Documentation for the OpenAI Model node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmopenhuggingfaceinference.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmopenhuggingfaceinference.md
index f603b2496..519964946 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmopenhuggingfaceinference.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmopenhuggingfaceinference.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Hugging Face Inference Model
description: Documentation for the Hugging Face Inference Model node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorybufferwindow.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorybufferwindow.md
index ff336754f..1026b9e81 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorybufferwindow.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorybufferwindow.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Window Buffer Memory
description: Documentation for the Window Buffer Memory node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymanager.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymanager.md
index f22c9bf04..9838b1ab0 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymanager.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymanager.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Chat Memory Manager
description: Documentation for the Chat Memory Manager node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymotorhead.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymotorhead.md
index 68a5c5622..9a9858f56 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymotorhead.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymotorhead.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Motorhead
description: Documentation for the Motorhead node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryredischat.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryredischat.md
index 560fe7c73..4f3be7cf8 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryredischat.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryredischat.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Redis Chat Memory
description: Documentation for the Redis Chat Memory node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata.md
index 438baff41..791d7d3a5 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Xata
description: Documentation for the Xata node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryzep.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryzep.md
index 23a719a4a..b6777471c 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryzep.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryzep.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Zep
description: Documentation for the Zep node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserautofixing.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserautofixing.md
index 32cf46e1a..608b4abd3 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserautofixing.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserautofixing.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Auto-fixing Output Parser
description: Documentation for the Auto-fixing Output Parser node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparseritemlist.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparseritemlist.md
index 8d488ec7f..5a59f9cd0 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparseritemlist.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparseritemlist.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Item List Output Parser
description: Documentation for the Item List Output Parser node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured.md
index 47365b789..544769797 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Structured Output Parser
description: Documentation for the Structured Output Parser node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievercontextualcompression.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievercontextualcompression.md
index 3d7a300f7..4378a0e1e 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievercontextualcompression.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievercontextualcompression.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Contextual Compression Retriever
description: Documentation for the Contextual Compression Retriever node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievermultiquery.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievermultiquery.md
index ba55ad6fc..64633ed8d 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievermultiquery.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievermultiquery.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MultiQuery Retriever
description: Documentation for the MultiQuery Retriever node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievervectorstore.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievervectorstore.md
index 239343abc..335e930a5 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievervectorstore.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievervectorstore.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Vector Store Retriever
description: Documentation for the Vector Store Retriever node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrieverworkflow.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrieverworkflow.md
index 1a4073644..83ee8ec45 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrieverworkflow.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrieverworkflow.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Workflow Retriever
description: Documentation for the Workflow Retriever node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittercharactertextsplitter.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittercharactertextsplitter.md
index 760573fdc..314c44623 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittercharactertextsplitter.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittercharactertextsplitter.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Character Text Splitter
description: Documentation for the Character Text Splitter node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplitterrecursivecharactertextsplitter.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplitterrecursivecharactertextsplitter.md
index 8f4a2b5d8..85bbacfdb 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplitterrecursivecharactertextsplitter.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplitterrecursivecharactertextsplitter.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Recursive Character Text Splitter
description: Documentation for the Recursive Character Text Splitter node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittertokensplitter.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittertokensplitter.md
index 29095c93b..903b83b4c 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittertokensplitter.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittertokensplitter.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Token Splitter
description: Documentation for the Token Splitter node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcalculator.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcalculator.md
index a9361353b..099d891d5 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcalculator.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcalculator.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Calculator
description: Documentation for the Calculator node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcode.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcode.md
index 272f72469..de355cfb1 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcode.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcode.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Custom Code Tool
description: Documentation for the Code Tool node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolhttprequest.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolhttprequest.md
index 3f8deb282..a037d7d31 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolhttprequest.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolhttprequest.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: HTTP Request
description: Documentation for the HTTP Request node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolserpapi.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolserpapi.md
index d03b40597..151f71025 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolserpapi.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolserpapi.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SerpAPI
description: Documentation for the SerpAPI node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolvectorstore.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolvectorstore.md
new file mode 100644
index 000000000..b8a818d86
--- /dev/null
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolvectorstore.md
@@ -0,0 +1,35 @@
+---
+title: Vector Store Tool
+description: Documentation for the Vector Store Tool node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
+---
+
+# Vector Store Tool
+
+The Vector Store node is a tool that allows an agent to access content from a vector store.
+
+On this page, you'll find the node parameters for the Vector Store node, and links to more resources.
+
+/// note | Examples and templates
+For usage examples and templates to help you get started, refer to n8n's [Vector Store Tool integrations](https://n8n.io/integrations/vector-store-tool/){:target=_blank .external-link} page.
+///
+
+--8<-- "_snippets/integrations/builtin/cluster-nodes/sub-node-expression-resolution.md"
+
+## Node parameters
+
+### Name
+
+The name of the tool for the agent to use.
+
+### Description
+
+A description of what the vector store contains.
+
+## Related resources
+
+View [example workflows and related content](https://n8n.io/integrations/vector-store-tool/){:target=_blank .external-link} on n8n's website.
+
+--8<-- "_snippets/integrations/builtin/cluster-nodes/tools-link.md"
+
+--8<-- "_snippets/integrations/builtin/cluster-nodes/langchain-overview-link.md"
+--8<-- "_glossary/ai-glossary.md"
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwikipedia.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwikipedia.md
index 5f7ee818c..b02511706 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwikipedia.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwikipedia.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Wikipedia
description: Documentation for the Wikipedia node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwolframalpha.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwolframalpha.md
index f767019b1..dcc61dc5f 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwolframalpha.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwolframalpha.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Wolfram|Alpha
description: Documentation for the Wolfram|Alpha node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow.md b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow.md
index 2abda181d..2c718cec0 100644
--- a/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow.md
+++ b/docs/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Custom n8n Workflow Tool
description: Documentation for the Custom n8n Workflow Tool node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/core-nodes/index.md b/docs/integrations/builtin/core-nodes/index.md
index d6e41e484..8e332f1d9 100644
--- a/docs/integrations/builtin/core-nodes/index.md
+++ b/docs/integrations/builtin/core-nodes/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.activationtrigger.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.activationtrigger.md
index f3bed0d90..7a9887ae1 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.activationtrigger.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.activationtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Activation trigger
description: Documentation for the Activation trigger node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.aggregate.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.aggregate.md
index 6ddfab622..fadb5116b 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.aggregate.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.aggregate.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Aggregate
description: Documentation for the Aggregate node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
---
@@ -38,6 +39,8 @@ To begin using the node, select the **Aggregate** you'd like to use. Choose whet
* **Include Binaries**: The node displays this toggle for both Aggregate types. Turn it on if you want to include binary data from the input in the new output.
* **Keep Missing And Null Values**: The node displays this toggle when you select the **Individual Fields** Aggregate. Turn it on to add a null (empty) entry in the output list when there is a null or missing value in the input. If turned off, the output ignores null or empty values.
+
+
## Related resources
View [example workflows and related content](https://n8n.io/integrations/aggregate/){:target=_blank .external-link} on n8n's website.
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.code.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.code.md
index 4109ec5c3..f8b85a6ea 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.code.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.code.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Code
description: Documentation for the Code node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.comparedatasets.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.comparedatasets.md
index 8e86ece61..1ba0485a4 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.comparedatasets.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.comparedatasets.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Compare Datasets
description: Documentation for the Compare Datasets node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.compression.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.compression.md
index 76a7f0099..58edd7a42 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.compression.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.compression.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Compression
description: Documentation for the Compression node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.converttofile.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.converttofile.md
index bb428206a..93963494a 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.converttofile.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.converttofile.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Convert to File
description: Documentation for the Convert to File node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
---
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.crypto.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.crypto.md
index ef46dec28..f1ec5688f 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.crypto.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.crypto.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Crypto
description: Documentation for the Crypto node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.datetime.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.datetime.md
index cea7c2758..5b6e74273 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.datetime.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.datetime.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Date & Time
description: Documentation for the Date & Time node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.debughelper.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.debughelper.md
index 82e9d64a5..9366d78f5 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.debughelper.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.debughelper.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Debug Helper
description: Documentation for the Debug Helper node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.editimage.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.editimage.md
index ac61ff67f..f6cda82de 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.editimage.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.editimage.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Edit Image
description: Documentation for the Edit Image node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.emailimap.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.emailimap.md
index 7f8e67d27..c95520f4f 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.emailimap.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.emailimap.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Email trigger (IMAP)
description: Documentation for the Email trigger (IMAP) node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.errortrigger.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.errortrigger.md
index b5ae00f97..b80fd5ee0 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.errortrigger.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.errortrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Error trigger
description: Documentation for the Error trigger node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.executecommand.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.executecommand.md
index 3743c8c65..e382025e7 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.executecommand.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.executecommand.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Execute Command
description: Documentation for the Execute Command node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.executeworkflow.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.executeworkflow.md
index 50cd41643..90cb95cdb 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.executeworkflow.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.executeworkflow.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Execute Workflow
description: Documentation for the Execute Workflow node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.executeworkflowtrigger.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.executeworkflowtrigger.md
index 22a47571c..872bd4bc5 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.executeworkflowtrigger.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.executeworkflowtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Execute Workflow trigger
description: Documentation for the Execute Workflow trigger node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.executionData.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.executiondata.md
similarity index 93%
rename from docs/integrations/builtin/core-nodes/n8n-nodes-base.executionData.md
rename to docs/integrations/builtin/core-nodes/n8n-nodes-base.executiondata.md
index 3dce1170c..cdb218ca6 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.executionData.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.executiondata.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Execution Data
description: Documentation for the Execution Data node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
@@ -29,4 +30,4 @@ Add a **Saved Field** for each key/value pair of metadata you'd like to save.
## Related resources
-View [example workflows and related content](https://n8n.io/integrations/execution-data/){:target=_blank .external-link} on n8n's website.
+View [example workflows and related content](https://n8n.io/integrations/execution-data/){:target=_blank .external-link} on n8n's website.
\ No newline at end of file
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.extractfromfile.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.extractfromfile.md
index cf4e54da3..9ab449a90 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.extractfromfile.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.extractfromfile.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Extract From File
description: Documentation for the Extract From File node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
---
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.filesreadwrite.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.filesreadwrite.md
index 8fa143759..670abb0ea 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.filesreadwrite.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.filesreadwrite.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Read/Write Files from Disk
description: Documentation for the Read/Write Files from Disk node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
---
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.filter.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.filter.md
index 318a9a08d..56a33e74c 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.filter.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.filter.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Filter
description: Documentation for the Filter node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.formtrigger.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.formtrigger.md
index 2204898a5..3607da684 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.formtrigger.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.formtrigger.md
@@ -1,6 +1,7 @@
---
-title: n8n Form trigger
-description: Documentation for the n8n Form trigger node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
+title: n8n Form Trigger
+description: Documentation for the n8n Form Trigger node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
---
# n8n Form trigger
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.ftp.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.ftp.md
index 399721c19..e4916efd6 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.ftp.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.ftp.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: FTP
description: Documentation for the FTP node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.git.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.git.md
index 954932f0c..cb3b84c2c 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.git.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.git.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Git
description: Documentation for the Git node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.graphql.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.graphql.md
index 7145e73ee..3c475b8f5 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.graphql.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.graphql.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: GraphQL
description: Documentation for the GraphQL node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.html.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.html.md
index d03b1ae87..f63725194 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.html.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.html.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: HTML
description: Documentation for the HTML node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.httprequest.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.httprequest.md
index 27a8ba528..4fedd1953 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.httprequest.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.httprequest.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: HTTP Request
description: Documentation for the HTTP Request node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.if.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.if.md
index 27bd48ce9..c86048166 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.if.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.if.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: If
description: Documentation for the If node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
tags:
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.itemlists.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.itemlists.md
index 522e78882..98c439267 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.itemlists.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.itemlists.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Item Lists
description: Documentation for the Item Lists node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.jwt.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.jwt.md
index 4aaa553a4..97eb84ec0 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.jwt.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.jwt.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: JWT
description: Documentation for the JWT node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.ldap.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.ldap.md
index 6e05b69f8..1c3bf53d6 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.ldap.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.ldap.md
@@ -1,5 +1,6 @@
---
-title: LDAP
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
+title: LDAP - n8n Documentation
description: Documentation for the LDAP node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
---
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.limit.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.limit.md
index b389799f8..1d33b9eab 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.limit.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.limit.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Limit
description: Documentation for the Limit node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
---
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.localfiletrigger.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.localfiletrigger.md
index 3d6eccd9d..286d667aa 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.localfiletrigger.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.localfiletrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Local File trigger
description: Documentation for the Local File trigger node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.manualworkflowtrigger.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.manualworkflowtrigger.md
index 2b37863f3..71c7082ca 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.manualworkflowtrigger.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.manualworkflowtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Manual trigger
description: Documentation for the Manual trigger node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.markdown.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.markdown.md
index 075ef7532..d1488ff55 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.markdown.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.markdown.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Markdown
description: Documentation for the Markdown node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.merge.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.merge.md
index 5d47c519f..84eba700a 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.merge.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.merge.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Merge
description: Documentation for the Merge node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.n8n.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.n8n.md
index 16cd1058a..30ac3b0b7 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.n8n.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.n8n.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: n8n
description: Documentation for the n8n node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.n8ntrigger.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.n8ntrigger.md
index fff29feba..cba261ba8 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.n8ntrigger.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.n8ntrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: n8n trigger
description: Documentation for the n8n trigger node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.noop.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.noop.md
index 05b22c689..f044c924b 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.noop.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.noop.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: No Operation, do nothing
description: Documentation for the No Operation, do nothing node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.removeduplicates.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.removeduplicates.md
index 6c6cf9061..780e2c2ee 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.removeduplicates.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.removeduplicates.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Remove Duplicates
description: Documentation for the Remove Duplicates node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
---
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.renamekeys.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.renamekeys.md
index 30b41c2f2..8890a8ced 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.renamekeys.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.renamekeys.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Rename Keys
description: Documentation for the Rename Keys node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.respondtowebhook.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.respondtowebhook.md
index 29393d2ca..0d7953025 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.respondtowebhook.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.respondtowebhook.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Respond to Webhook
description: Documentation for the Respond to Webhook node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.rssfeedread.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.rssfeedread.md
index d7bf9203c..a658e0abe 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.rssfeedread.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.rssfeedread.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: RSS Read
description: Documentation for the RSS Read node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.rssfeedreadtrigger.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.rssfeedreadtrigger.md
index eb44391ca..a0ac565fa 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.rssfeedreadtrigger.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.rssfeedreadtrigger.md
@@ -1,6 +1,7 @@
---
-title: RSS Feed trigger
-description: Documentation for the RSS Feed trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
+title: RSS Feed Trigger
+description: Documentation for the RSS Feed Trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
# RSS Feed trigger
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.scheduletrigger.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.scheduletrigger.md
index ae5bf8ae3..e8b860568 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.scheduletrigger.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.scheduletrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Schedule trigger
description: Documentation for the Schedule trigger node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.sendemail.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.sendemail.md
index c2695bf5b..8215b4830 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.sendemail.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.sendemail.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Send Email
description: Documentation for the Send Email node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.set.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.set.md
index 49555a8b3..47a7c9dba 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.set.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.set.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Edit Fields (Set)
description: Documentation for the Edit Fields node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.sort.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.sort.md
index 11eb31820..8b0249954 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.sort.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.sort.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Sort
description: Documentation for the Sort node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
---
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.splitinbatches.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.splitinbatches.md
index 85bb36123..4f33599b0 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.splitinbatches.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.splitinbatches.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Loop Over Items
description: Documentation for the Loop Over Items node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.splitout.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.splitout.md
index e6d18cafc..3af9e5c46 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.splitout.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.splitout.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Split Out
description: Documentation for the Split Out node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
---
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.ssetrigger.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.ssetrigger.md
index 0a15befa1..b39251bee 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.ssetrigger.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.ssetrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SSE trigger
description: Documentation for the SSE trigger node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.ssh.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.ssh.md
index 02fef495b..402342baa 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.ssh.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.ssh.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SSH
description: Documentation for the SSH node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.start.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.start.md
index 3815d38fb..e469cd3ff 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.start.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.start.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Start
description: Documentation for the Start node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.stopanderror.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.stopanderror.md
index 5f3c79d9a..0d8122be5 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.stopanderror.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.stopanderror.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Stop And Error
description: Documentation for the Stop And Error node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.summarize.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.summarize.md
index 47fcd4a73..554e66a07 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.summarize.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.summarize.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Summarize
description: Documentation for the Summarize node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
---
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.switch.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.switch.md
index b0ddcd3dc..6ab711012 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.switch.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.switch.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Switch
description: Documentation for the Switch node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.totp.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.totp.md
index 5b29a9f35..cb6df9fd9 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.totp.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.totp.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: TOTP
description: Documentation for the TOTP node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.wait.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.wait.md
index 50186e828..cfc9a70af 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.wait.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.wait.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Wait
description: Documentation for the Wait node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
@@ -50,7 +51,7 @@ See the [Webhook node](/integrations/builtin/core-nodes/n8n-nodes-base.webhook/)
In addition to the parameters shared with the Webhook node, the Wait node has the following configuration options:
* **Limit wait time**: Set the maximum amount of time to wait before the execution resumes.
-* **Add Option** > **Webhook Suffix**: Provide a suffix that you want to appended to the resume URL. This is useful for creating unique webhook URLs for each Wait node when a workflow contains multiple Wait nodes. Not that the generated `$resumeWebhookUrl` won't automatically include this suffix, you must manually append it to the webhook URL before exposing it.
+* **Add Option** > **Webhook Suffix**: Provide a suffix that you want to appended to the resume URL. This is useful for creating unique webhook URLs for each Wait node when a workflow contains multiple Wait nodes. Note that the generated `$resumeWebhookUrl` won't automatically include this suffix, you must manually append it to the webhook URL before exposing it.
### Limitations
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.webhook.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.webhook.md
index 908da7fa7..3cbf2c08e 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.webhook.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.webhook.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Webhook
description: Documentation for the Webhook node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
tags:
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.workflowtrigger.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.workflowtrigger.md
index 7a19cf316..d56236ff5 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.workflowtrigger.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.workflowtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Workflow trigger
description: Documentation for the Workflow trigger node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.xml.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.xml.md
index 893f2c202..cd690aeab 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.xml.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.xml.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: XML
description: Documentation for the XML node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger.md b/docs/integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger.md
index 498f49f5a..5288889ce 100644
--- a/docs/integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger.md
+++ b/docs/integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Chat trigger
description: Documentation for the Chat trigger node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
---
diff --git a/docs/integrations/builtin/credentials/actionnetwork.md b/docs/integrations/builtin/credentials/actionnetwork.md
index ef20813ab..90721500d 100644
--- a/docs/integrations/builtin/credentials/actionnetwork.md
+++ b/docs/integrations/builtin/credentials/actionnetwork.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Action Network credentials
description: Documentation for Action Network credentials. Use these credentials to authenticate Action Network in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/activecampaign.md b/docs/integrations/builtin/credentials/activecampaign.md
index b99ba9a70..ce27cf056 100644
--- a/docs/integrations/builtin/credentials/activecampaign.md
+++ b/docs/integrations/builtin/credentials/activecampaign.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: ActiveCampaign credentials
description: Documentation for ActiveCampaign credentials. Use these credentials to authenticate ActiveCampaign in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/acuityscheduling.md b/docs/integrations/builtin/credentials/acuityscheduling.md
index cb1396563..c7fbbf62a 100644
--- a/docs/integrations/builtin/credentials/acuityscheduling.md
+++ b/docs/integrations/builtin/credentials/acuityscheduling.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Acuity Scheduling credentials
description: Documentation for Acuity Scheduling credentials. Use these credentials to authenticate Acuity Scheduling in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/adalo.md b/docs/integrations/builtin/credentials/adalo.md
index d6e16c4ab..792d09c8b 100644
--- a/docs/integrations/builtin/credentials/adalo.md
+++ b/docs/integrations/builtin/credentials/adalo.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Adalo credentials
description: Documentation for Adalo credentials. Use these credentials to authenticate Adalo in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/affinity.md b/docs/integrations/builtin/credentials/affinity.md
index fdb12ff8c..4f6e83a03 100644
--- a/docs/integrations/builtin/credentials/affinity.md
+++ b/docs/integrations/builtin/credentials/affinity.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Affinity credentials
description: Documentation for the Affinity credentials. Use these credentials to authenticate Affinity in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/agilecrm.md b/docs/integrations/builtin/credentials/agilecrm.md
index fa994d2a1..5555e1fb7 100644
--- a/docs/integrations/builtin/credentials/agilecrm.md
+++ b/docs/integrations/builtin/credentials/agilecrm.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Agile CRM credentials
description: Documentation for Agile CRM credentials. Use these credentials to authenticate Agile CRM in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/airtable.md b/docs/integrations/builtin/credentials/airtable.md
index 8ce5c9ee8..0f77a49c0 100644
--- a/docs/integrations/builtin/credentials/airtable.md
+++ b/docs/integrations/builtin/credentials/airtable.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Airtable credentials
description: Documentation for Airtable credentials. Use these credentials to authenticate Airtable in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/alienvault.md b/docs/integrations/builtin/credentials/alienvault.md
index 2fb8adff7..06eb015b4 100644
--- a/docs/integrations/builtin/credentials/alienvault.md
+++ b/docs/integrations/builtin/credentials/alienvault.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AlienVault credentials
description: Documentation for the AlienVault credentials. Use these credentials to authenticate AlienVault in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/amqp.md b/docs/integrations/builtin/credentials/amqp.md
index 622ddf082..7bc812c9b 100644
--- a/docs/integrations/builtin/credentials/amqp.md
+++ b/docs/integrations/builtin/credentials/amqp.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AMQP credentials
description: Documentation for AMQP credentials. Use these credentials to authenticate AMQP in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/anthropic.md b/docs/integrations/builtin/credentials/anthropic.md
index 769cbb48a..4cf352281 100644
--- a/docs/integrations/builtin/credentials/anthropic.md
+++ b/docs/integrations/builtin/credentials/anthropic.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Anthropic credentials
description: Documentation for the Anthropic credentials. Use these credentials to authenticate Anthropic in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/apitemplateio.md b/docs/integrations/builtin/credentials/apitemplateio.md
index 298dfbd81..7db932db4 100644
--- a/docs/integrations/builtin/credentials/apitemplateio.md
+++ b/docs/integrations/builtin/credentials/apitemplateio.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: APITemplate.io credentials
description: Documentation for APITemplate.io credentials. Use these credentials to authenticate APITemplate.io in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/asana.md b/docs/integrations/builtin/credentials/asana.md
index 0dfed7a5b..3b5cb3d02 100644
--- a/docs/integrations/builtin/credentials/asana.md
+++ b/docs/integrations/builtin/credentials/asana.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Asana credentials
description: Documentation for Asana credentials. Use these credentials to authenticate Asana in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/auth0management.md b/docs/integrations/builtin/credentials/auth0management.md
index 44863e53b..d5830b2a5 100644
--- a/docs/integrations/builtin/credentials/auth0management.md
+++ b/docs/integrations/builtin/credentials/auth0management.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Auth0 Management credentials
description: Documentation for the Auth0 Management credentials. Use these credentials to authenticate Auth0 Management in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/automizy.md b/docs/integrations/builtin/credentials/automizy.md
index 38cc5f166..08519be72 100644
--- a/docs/integrations/builtin/credentials/automizy.md
+++ b/docs/integrations/builtin/credentials/automizy.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Automizy credentials
description: Documentation for Automizy credentials. Use these credentials to authenticate Automizy in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/autopilot.md b/docs/integrations/builtin/credentials/autopilot.md
index fb7fc4c18..95e72029d 100644
--- a/docs/integrations/builtin/credentials/autopilot.md
+++ b/docs/integrations/builtin/credentials/autopilot.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Autopilot credentials
description: Documentation for Autopilot credentials. Use these credentials to authenticate Autopilot in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/aws.md b/docs/integrations/builtin/credentials/aws.md
index 3ba46dd6f..7ec455170 100644
--- a/docs/integrations/builtin/credentials/aws.md
+++ b/docs/integrations/builtin/credentials/aws.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AWS credentials
description: Documentation for AWS credentials. Use these credentials to authenticate AWS in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/azureopenai.md b/docs/integrations/builtin/credentials/azureopenai.md
index fe8dc9ebd..bd8345c6e 100644
--- a/docs/integrations/builtin/credentials/azureopenai.md
+++ b/docs/integrations/builtin/credentials/azureopenai.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Azure OpenAI credentials
description: Documentation for Azure OpenAI credentials. Use these credentials to authenticate OpenAI in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/bamboohr.md b/docs/integrations/builtin/credentials/bamboohr.md
index d3cc7a849..5763c6770 100644
--- a/docs/integrations/builtin/credentials/bamboohr.md
+++ b/docs/integrations/builtin/credentials/bamboohr.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: BambooHR credentials
description: Documentation for BambooHR credentials. Use these credentials to authenticate BambooHR in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/bannerbear.md b/docs/integrations/builtin/credentials/bannerbear.md
index 31cf11cca..5f9b2d77e 100644
--- a/docs/integrations/builtin/credentials/bannerbear.md
+++ b/docs/integrations/builtin/credentials/bannerbear.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Bannerbear credentials
description: Documentation for Bannerbear credentials. Use these credentials to authenticate Bannerbear in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/baserow.md b/docs/integrations/builtin/credentials/baserow.md
index 366d83e6c..5b3e9db6a 100644
--- a/docs/integrations/builtin/credentials/baserow.md
+++ b/docs/integrations/builtin/credentials/baserow.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Baserow credentials
description: Documentation for Baserow credentials. Use these credentials to authenticate Baserow in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/beeminder.md b/docs/integrations/builtin/credentials/beeminder.md
index d901f9d53..eef766a7d 100644
--- a/docs/integrations/builtin/credentials/beeminder.md
+++ b/docs/integrations/builtin/credentials/beeminder.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Beeminder credentials
description: Documentation for Beeminder credentials. Use these credentials to authenticate Beeminder in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/bitbucket.md b/docs/integrations/builtin/credentials/bitbucket.md
index 9a3318e62..109ea2342 100644
--- a/docs/integrations/builtin/credentials/bitbucket.md
+++ b/docs/integrations/builtin/credentials/bitbucket.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Bitbucket credentials
description: Documentation for Bitbucket credentials. Use these credentials to authenticate Bitbucket in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/bitly.md b/docs/integrations/builtin/credentials/bitly.md
index b84900bc7..f24c81ee5 100644
--- a/docs/integrations/builtin/credentials/bitly.md
+++ b/docs/integrations/builtin/credentials/bitly.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Bitly credentials
description: Documentation for Bitly credentials. Use these credentials to authenticate Bitly in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/bitwarden.md b/docs/integrations/builtin/credentials/bitwarden.md
index f602c6280..570439e7c 100644
--- a/docs/integrations/builtin/credentials/bitwarden.md
+++ b/docs/integrations/builtin/credentials/bitwarden.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Bitwarden credentials
description: Documentation for Bitwarden credentials. Use these credentials to authenticate Bitwarden in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/box.md b/docs/integrations/builtin/credentials/box.md
index 9495a13c5..89a562bfc 100644
--- a/docs/integrations/builtin/credentials/box.md
+++ b/docs/integrations/builtin/credentials/box.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Box credentials
description: Documentation for Box credentials. Use these credentials to authenticate Box in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/brandfetch.md b/docs/integrations/builtin/credentials/brandfetch.md
index 7b314ee1c..b30188a30 100644
--- a/docs/integrations/builtin/credentials/brandfetch.md
+++ b/docs/integrations/builtin/credentials/brandfetch.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Brandfetch credentials
description: Documentation for Brandfetch credentials. Use these credentials to authenticate Brandfetch in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/brevo.md b/docs/integrations/builtin/credentials/brevo.md
index 9d16744e7..75e2d5dd6 100644
--- a/docs/integrations/builtin/credentials/brevo.md
+++ b/docs/integrations/builtin/credentials/brevo.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Brevo credentials
description: Documentation for Brevo credentials. Use these credentials to authenticate Brevo in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/bubble.md b/docs/integrations/builtin/credentials/bubble.md
index f45cba2b2..449ea96ff 100644
--- a/docs/integrations/builtin/credentials/bubble.md
+++ b/docs/integrations/builtin/credentials/bubble.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Bubble credentials
description: Documentation for Bubble credentials. Use these credentials to authenticate Bubble in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/cal.md b/docs/integrations/builtin/credentials/cal.md
index 8e0677fab..26b06b1d3 100644
--- a/docs/integrations/builtin/credentials/cal.md
+++ b/docs/integrations/builtin/credentials/cal.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Cal credentials
description: Documentation for Cal credentials. Use these credentials to authenticate Cal in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/calendly.md b/docs/integrations/builtin/credentials/calendly.md
index 9109c26a7..7a7a77f36 100644
--- a/docs/integrations/builtin/credentials/calendly.md
+++ b/docs/integrations/builtin/credentials/calendly.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Calendly credentials
description: Documentation for Calendly credentials. Use these credentials to authenticate Calendly in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/carbonblack.md b/docs/integrations/builtin/credentials/carbonblack.md
index dcaf14512..65a0b5bcf 100644
--- a/docs/integrations/builtin/credentials/carbonblack.md
+++ b/docs/integrations/builtin/credentials/carbonblack.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Carbon Black credentials
description: Documentation for the Carbon Black credentials. Use these credentials to authenticate Carbon Black in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/chargebee.md b/docs/integrations/builtin/credentials/chargebee.md
index 1c1f36faa..4f9c021d6 100644
--- a/docs/integrations/builtin/credentials/chargebee.md
+++ b/docs/integrations/builtin/credentials/chargebee.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Chargebee credentials
description: Documentation for Chargebee credentials. Use these credentials to authenticate Chargebee in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/circleci.md b/docs/integrations/builtin/credentials/circleci.md
index 4fde80098..fc5b6a506 100644
--- a/docs/integrations/builtin/credentials/circleci.md
+++ b/docs/integrations/builtin/credentials/circleci.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: CircleCI credentials
description: Documentation for CircleCI credentials. Use these credentials to authenticate CircleCI in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/ciscomeraki.md b/docs/integrations/builtin/credentials/ciscomeraki.md
index d522b5385..7ab72c360 100644
--- a/docs/integrations/builtin/credentials/ciscomeraki.md
+++ b/docs/integrations/builtin/credentials/ciscomeraki.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Cisco Meraki credentials
description: Documentation for the Cisco Meraki credentials. Use these credentials to authenticate Cisco Meraki in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/ciscosecureendpoint.md b/docs/integrations/builtin/credentials/ciscosecureendpoint.md
index 7857fb046..f98c33cd7 100644
--- a/docs/integrations/builtin/credentials/ciscosecureendpoint.md
+++ b/docs/integrations/builtin/credentials/ciscosecureendpoint.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Cisco Secure Endpoint credentials
description: Documentation for the Cisco Secure Endpoint credentials. Use these credentials to authenticate Cisco Secure Endpoint in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/ciscoumbrella.md b/docs/integrations/builtin/credentials/ciscoumbrella.md
index 5f74dd08b..614ac8a78 100644
--- a/docs/integrations/builtin/credentials/ciscoumbrella.md
+++ b/docs/integrations/builtin/credentials/ciscoumbrella.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Cisco Umbrella credentials
description: Documentation for the Cisco Umbrella credentials. Use these credentials to authenticate Cisco Umbrella in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/ciscowebex.md b/docs/integrations/builtin/credentials/ciscowebex.md
index 1f734d90b..076b481a0 100644
--- a/docs/integrations/builtin/credentials/ciscowebex.md
+++ b/docs/integrations/builtin/credentials/ciscowebex.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Webex by Cisco credentials
description: Documentation for Webex by Cisco credentials. Use these credentials to authenticate Webex by Cisco in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/citrixadc.md b/docs/integrations/builtin/credentials/citrixadc.md
index e9d504e53..7424f4fd1 100644
--- a/docs/integrations/builtin/credentials/citrixadc.md
+++ b/docs/integrations/builtin/credentials/citrixadc.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Citrix ADC credentials
description: Documentation for Citrix ADC credentials. Use these credentials to authenticate Citrix ADC in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/clearbit.md b/docs/integrations/builtin/credentials/clearbit.md
index d05f65a18..13de5d73a 100644
--- a/docs/integrations/builtin/credentials/clearbit.md
+++ b/docs/integrations/builtin/credentials/clearbit.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Clearbit credentials
description: Documentation for Clearbit credentials. Use these credentials to authenticate Clearbit in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/clickup.md b/docs/integrations/builtin/credentials/clickup.md
index 99c2da1f3..269cdaa2e 100644
--- a/docs/integrations/builtin/credentials/clickup.md
+++ b/docs/integrations/builtin/credentials/clickup.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: ClickUp credentials
description: Documentation for ClickUp credentials. Use these credentials to authenticate ClickUp in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/clockify.md b/docs/integrations/builtin/credentials/clockify.md
index 54f04a26d..e25fc0a40 100644
--- a/docs/integrations/builtin/credentials/clockify.md
+++ b/docs/integrations/builtin/credentials/clockify.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Clockify credentials
description: Documentation for Clockify credentials. Use these credentials to authenticate Clockify in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/cloudflare.md b/docs/integrations/builtin/credentials/cloudflare.md
index 5d5d86fe1..2465a202d 100644
--- a/docs/integrations/builtin/credentials/cloudflare.md
+++ b/docs/integrations/builtin/credentials/cloudflare.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Cloudflare credentials
description: Documentation for Cloudflare credentials. Use these credentials to authenticate Cloudflare in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/cockpit.md b/docs/integrations/builtin/credentials/cockpit.md
index 11ee82ef9..352d8f243 100644
--- a/docs/integrations/builtin/credentials/cockpit.md
+++ b/docs/integrations/builtin/credentials/cockpit.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Cockpit credentials
description: Documentation for Cockpit credentials. Use these credentials to authenticate Cockpit in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/coda.md b/docs/integrations/builtin/credentials/coda.md
index 98db0be6f..c2d084819 100644
--- a/docs/integrations/builtin/credentials/coda.md
+++ b/docs/integrations/builtin/credentials/coda.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Coda credentials
description: Documentation for Coda credentials. Use these credentials to authenticate Coda in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/cohere.md b/docs/integrations/builtin/credentials/cohere.md
index 81e0bfdeb..29a3ede67 100644
--- a/docs/integrations/builtin/credentials/cohere.md
+++ b/docs/integrations/builtin/credentials/cohere.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Cohere credentials
description: Documentation for the Cohere credentials. Use these credentials to authenticate Cohere in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/contentful.md b/docs/integrations/builtin/credentials/contentful.md
index 623065de2..b69a953e4 100644
--- a/docs/integrations/builtin/credentials/contentful.md
+++ b/docs/integrations/builtin/credentials/contentful.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Contentful credentials
description: Documentation for Contentful credentials. Use these credentials to authenticate Contentful in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/convertkit.md b/docs/integrations/builtin/credentials/convertkit.md
index 05cb96b03..99d7c871e 100644
--- a/docs/integrations/builtin/credentials/convertkit.md
+++ b/docs/integrations/builtin/credentials/convertkit.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: ConvertKit credentials
description: Documentation for ConvertKit credentials. Use these credentials to authenticate ConvertKit in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/copper.md b/docs/integrations/builtin/credentials/copper.md
index 814d8d0c8..364b202d3 100644
--- a/docs/integrations/builtin/credentials/copper.md
+++ b/docs/integrations/builtin/credentials/copper.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Copper credentials
description: Documentation for Copper credentials. Use these credentials to authenticate Copper in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/cortex.md b/docs/integrations/builtin/credentials/cortex.md
index a7f8ac212..85ee9f8cf 100644
--- a/docs/integrations/builtin/credentials/cortex.md
+++ b/docs/integrations/builtin/credentials/cortex.md
@@ -1,5 +1,6 @@
---
-title: Cortex credentials
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
+title: Cortex credentials
description: Documentation for the Cortex credentials. Use these credentials to authenticate Cortex in n8n, a workflow automation platform.
contentType: integration
---
diff --git a/docs/integrations/builtin/credentials/cratedb.md b/docs/integrations/builtin/credentials/cratedb.md
index 9a8aceb9a..a063f8c90 100644
--- a/docs/integrations/builtin/credentials/cratedb.md
+++ b/docs/integrations/builtin/credentials/cratedb.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: CrateDB credentials
description: Documentation for CrateDB credentials. Use these credentials to authenticate CrateDB in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/crowddev.md b/docs/integrations/builtin/credentials/crowddev.md
index 8bfa3054a..60f9998a0 100644
--- a/docs/integrations/builtin/credentials/crowddev.md
+++ b/docs/integrations/builtin/credentials/crowddev.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: crowd.dev credentials
description: Documentation for the crowd.dev credentials. Use these credentials to authenticate crowd.dev in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/crowdstrike.md b/docs/integrations/builtin/credentials/crowdstrike.md
index 7a91c1ae7..10828c95a 100644
--- a/docs/integrations/builtin/credentials/crowdstrike.md
+++ b/docs/integrations/builtin/credentials/crowdstrike.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: CrowdStrike credentials
description: Documentation for the CrowdStrike credentials. Use these credentials to authenticate CrowdStrike in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/customerio.md b/docs/integrations/builtin/credentials/customerio.md
index cd62eb2b2..14f0f0c73 100644
--- a/docs/integrations/builtin/credentials/customerio.md
+++ b/docs/integrations/builtin/credentials/customerio.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Customer.io credentials
description: Documentation for Customer.io credentials. Use these credentials to authenticate Customer.io in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/deepl.md b/docs/integrations/builtin/credentials/deepl.md
index 074d97c9e..5bb97b9b4 100644
--- a/docs/integrations/builtin/credentials/deepl.md
+++ b/docs/integrations/builtin/credentials/deepl.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: DeepL credentials
description: Documentation for DeepL credentials. Use these credentials to authenticate DeepL in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/demio.md b/docs/integrations/builtin/credentials/demio.md
index 3e8c9c702..0eb5daaeb 100644
--- a/docs/integrations/builtin/credentials/demio.md
+++ b/docs/integrations/builtin/credentials/demio.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Demio credentials
description: Documentation for Demio credentials. Use these credentials to authenticate Demio in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/dhl.md b/docs/integrations/builtin/credentials/dhl.md
index 1784b03ee..e54e6b23f 100644
--- a/docs/integrations/builtin/credentials/dhl.md
+++ b/docs/integrations/builtin/credentials/dhl.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: DHL credentials
description: Documentation for DHL credentials. Use these credentials to authenticate DHL in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/discord.md b/docs/integrations/builtin/credentials/discord.md
index 5bdbd25b1..7a93b7ae2 100644
--- a/docs/integrations/builtin/credentials/discord.md
+++ b/docs/integrations/builtin/credentials/discord.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Discord credentials
description: Documentation for Discord credentials. Use these credentials to authenticate Discord in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/discourse.md b/docs/integrations/builtin/credentials/discourse.md
index f28b66553..42f05431b 100644
--- a/docs/integrations/builtin/credentials/discourse.md
+++ b/docs/integrations/builtin/credentials/discourse.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Discourse credentials
description: Documentation for Discourse credentials. Use these credentials to authenticate Discourse in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/disqus.md b/docs/integrations/builtin/credentials/disqus.md
index 912f1f2b4..4848fe864 100644
--- a/docs/integrations/builtin/credentials/disqus.md
+++ b/docs/integrations/builtin/credentials/disqus.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Disqus credentials
description: Documentation for Disqus credentials. Use these credentials to authenticate Disqus in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/drift.md b/docs/integrations/builtin/credentials/drift.md
index ec614003d..63e53903b 100644
--- a/docs/integrations/builtin/credentials/drift.md
+++ b/docs/integrations/builtin/credentials/drift.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Drift credentials
description: Documentation for Drift credentials. Use these credentials to authenticate Drift in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/dropbox.md b/docs/integrations/builtin/credentials/dropbox.md
index b8e7d0a35..289f4c089 100644
--- a/docs/integrations/builtin/credentials/dropbox.md
+++ b/docs/integrations/builtin/credentials/dropbox.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Dropbox credentials
description: Documentation for Dropbox credentials. Use these credentials to authenticate Dropbox in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/dropcontact.md b/docs/integrations/builtin/credentials/dropcontact.md
index ef4bca947..d1b4a8b9d 100644
--- a/docs/integrations/builtin/credentials/dropcontact.md
+++ b/docs/integrations/builtin/credentials/dropcontact.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Dropcontact credentials
description: Documentation for Dropcontact credentials. Use these credentials to authenticate Dropcontact in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/egoi.md b/docs/integrations/builtin/credentials/egoi.md
index 27b08e7af..59c28e863 100644
--- a/docs/integrations/builtin/credentials/egoi.md
+++ b/docs/integrations/builtin/credentials/egoi.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: E-goi credentials
description: Documentation for E-goi credentials. Use these credentials to authenticate E-goi in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/elasticsearch.md b/docs/integrations/builtin/credentials/elasticsearch.md
index fca0a614d..f3c474201 100644
--- a/docs/integrations/builtin/credentials/elasticsearch.md
+++ b/docs/integrations/builtin/credentials/elasticsearch.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Elasticsearch credentials
description: Documentation for Elasticsearch credentials. Use these credentials to authenticate Elasticsearch in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/elasticsecurity.md b/docs/integrations/builtin/credentials/elasticsecurity.md
index 42fdf0a16..df38bcbf3 100644
--- a/docs/integrations/builtin/credentials/elasticsecurity.md
+++ b/docs/integrations/builtin/credentials/elasticsecurity.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Elastic Security credentials
description: Documentation for Elastic Security credentials. Use these credentials to authenticate Elastic Security in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/emelia.md b/docs/integrations/builtin/credentials/emelia.md
index 6abcb4f74..929f8c18e 100644
--- a/docs/integrations/builtin/credentials/emelia.md
+++ b/docs/integrations/builtin/credentials/emelia.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Emelia credentials
description: Documentation for Emelia credentials. Use these credentials to authenticate Emelia in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/erpnext.md b/docs/integrations/builtin/credentials/erpnext.md
index f059e7fd9..a2a46edad 100644
--- a/docs/integrations/builtin/credentials/erpnext.md
+++ b/docs/integrations/builtin/credentials/erpnext.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: ERPNext credentials
description: Documentation for ERPNext credentials. Use these credentials to authenticate ERPNext in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/eventbrite.md b/docs/integrations/builtin/credentials/eventbrite.md
index 7d349b1df..3f00b7c46 100644
--- a/docs/integrations/builtin/credentials/eventbrite.md
+++ b/docs/integrations/builtin/credentials/eventbrite.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Eventbrite credentials
description: Documentation for Eventbrite credentials. Use these credentials to authenticate Eventbrite in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/f5bigip.md b/docs/integrations/builtin/credentials/f5bigip.md
index 1422c4021..dd7261d1a 100644
--- a/docs/integrations/builtin/credentials/f5bigip.md
+++ b/docs/integrations/builtin/credentials/f5bigip.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: F5 Big-IP credentials
description: Documentation for the F5 Big-IP credentials. Use these credentials to authenticate F5 Big-IP in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/facebookapp.md b/docs/integrations/builtin/credentials/facebookapp.md
index 9e5523efb..fd0b24d82 100644
--- a/docs/integrations/builtin/credentials/facebookapp.md
+++ b/docs/integrations/builtin/credentials/facebookapp.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Facebook App credentials
description: Documentation for Facebook App credentials. Use these credentials to authenticate Facebook App in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/facebookgraph.md b/docs/integrations/builtin/credentials/facebookgraph.md
index 16a42e8e6..e0e50d153 100644
--- a/docs/integrations/builtin/credentials/facebookgraph.md
+++ b/docs/integrations/builtin/credentials/facebookgraph.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Facebook Graph API credentials
description: Documentation for Facebook Graph API credentials. Use these credentials to authenticate Facebook Graph API in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/facebookleadads.md b/docs/integrations/builtin/credentials/facebookleadads.md
index 3b7112b38..813e09a24 100644
--- a/docs/integrations/builtin/credentials/facebookleadads.md
+++ b/docs/integrations/builtin/credentials/facebookleadads.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Facebook Lead Ads credentials
description: Documentation for the Facebook Lead Ads credentials. Use these credentials to authenticate Facebook Lead Ads in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/figma.md b/docs/integrations/builtin/credentials/figma.md
index 14977a767..e9507094c 100644
--- a/docs/integrations/builtin/credentials/figma.md
+++ b/docs/integrations/builtin/credentials/figma.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Figma credentials
description: Documentation for Figma credentials. Use these credentials to authenticate Figma in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/filemaker.md b/docs/integrations/builtin/credentials/filemaker.md
index c75229691..837cf84d1 100644
--- a/docs/integrations/builtin/credentials/filemaker.md
+++ b/docs/integrations/builtin/credentials/filemaker.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: FileMaker credentials
description: Documentation for FileMaker credentials. Use these credentials to authenticate FileMaker in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/flow.md b/docs/integrations/builtin/credentials/flow.md
index 712b8818c..09e78e74e 100644
--- a/docs/integrations/builtin/credentials/flow.md
+++ b/docs/integrations/builtin/credentials/flow.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Flow credentials
description: Documentation for Flow credentials. Use these credentials to authenticate Flow in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/formiotrigger.md b/docs/integrations/builtin/credentials/formiotrigger.md
index c2f06941b..2f3bca17f 100644
--- a/docs/integrations/builtin/credentials/formiotrigger.md
+++ b/docs/integrations/builtin/credentials/formiotrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Form.io Trigger credentials
description: Documentation for Form.io Trigger credentials. Use these credentials to authenticate Form.io Trigger in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/formstacktrigger.md b/docs/integrations/builtin/credentials/formstacktrigger.md
index 279b39127..b4d135bd4 100644
--- a/docs/integrations/builtin/credentials/formstacktrigger.md
+++ b/docs/integrations/builtin/credentials/formstacktrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Formstack Trigger credentials
description: Documentation for Formstack Trigger credentials. Use these credentials to authenticate Formstack Trigger in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/fortigate.md b/docs/integrations/builtin/credentials/fortigate.md
index b1b8eceaf..f8f1aff0e 100644
--- a/docs/integrations/builtin/credentials/fortigate.md
+++ b/docs/integrations/builtin/credentials/fortigate.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Fortinet FortiGate credentials
description: Documentation for the Fortinet FortiGate credentials. Use these credentials to authenticate Fortinet FortiGate in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/freshdesk.md b/docs/integrations/builtin/credentials/freshdesk.md
index 1c66e8784..ed064bb61 100644
--- a/docs/integrations/builtin/credentials/freshdesk.md
+++ b/docs/integrations/builtin/credentials/freshdesk.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Freshdesk credentials
description: Documentation for Freshdesk credentials. Use these credentials to authenticate Freshdesk in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/freshservice.md b/docs/integrations/builtin/credentials/freshservice.md
index d18eba4b4..659d5289d 100644
--- a/docs/integrations/builtin/credentials/freshservice.md
+++ b/docs/integrations/builtin/credentials/freshservice.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Freshservice credentials
description: Documentation for Freshservice credentials. Use these credentials to authenticate Freshservice in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/freshworkscrm.md b/docs/integrations/builtin/credentials/freshworkscrm.md
index 011c515c2..7a5bc7e94 100644
--- a/docs/integrations/builtin/credentials/freshworkscrm.md
+++ b/docs/integrations/builtin/credentials/freshworkscrm.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Freshworks CRM credentials
description: Documentation for Freshworks CRM credentials. Use these credentials to authenticate Freshworks CRM in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/ftp.md b/docs/integrations/builtin/credentials/ftp.md
index 7c30fad68..df9d79a85 100644
--- a/docs/integrations/builtin/credentials/ftp.md
+++ b/docs/integrations/builtin/credentials/ftp.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: FTP credentials
description: Documentation for FTP credentials. Use these credentials to authenticate FTP in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/getresponse.md b/docs/integrations/builtin/credentials/getresponse.md
index 553b73563..0b6cd3098 100644
--- a/docs/integrations/builtin/credentials/getresponse.md
+++ b/docs/integrations/builtin/credentials/getresponse.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: GetResponse credentials
description: Documentation for GetResponse credentials. Use these credentials to authenticate GetResponse in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/ghost.md b/docs/integrations/builtin/credentials/ghost.md
index 11b7bae12..922c6af99 100644
--- a/docs/integrations/builtin/credentials/ghost.md
+++ b/docs/integrations/builtin/credentials/ghost.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Ghost credentials
description: Documentation for Ghost credentials. Use these credentials to authenticate Ghost in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/git.md b/docs/integrations/builtin/credentials/git.md
index 60ed5d799..ea42a34e2 100644
--- a/docs/integrations/builtin/credentials/git.md
+++ b/docs/integrations/builtin/credentials/git.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Git credentials
description: Documentation for Git credentials. Use these credentials to authenticate Git in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/github.md b/docs/integrations/builtin/credentials/github.md
index a7610a7d5..c08164148 100644
--- a/docs/integrations/builtin/credentials/github.md
+++ b/docs/integrations/builtin/credentials/github.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: GitHub credentials
description: Documentation for GitHub credentials. Use these credentials to authenticate GitHub in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/gitlab.md b/docs/integrations/builtin/credentials/gitlab.md
index 419a86405..3016bddaf 100644
--- a/docs/integrations/builtin/credentials/gitlab.md
+++ b/docs/integrations/builtin/credentials/gitlab.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: GitLab credentials
description: Documentation for GitLab credentials. Use these credentials to authenticate GitLab in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/google/googleai.md b/docs/integrations/builtin/credentials/google/googleai.md
index abaaf0493..e803ee1ce 100644
--- a/docs/integrations/builtin/credentials/google/googleai.md
+++ b/docs/integrations/builtin/credentials/google/googleai.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google AI credentials
description: Documentation for the Google AI credentials. Use these credentials to authenticate Google AI nodes in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/google/index.md b/docs/integrations/builtin/credentials/google/index.md
index 6391ab7e9..9055cc346 100644
--- a/docs/integrations/builtin/credentials/google/index.md
+++ b/docs/integrations/builtin/credentials/google/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google credentials
description: Documentation for Google credentials. Use these credentials to authenticate Google in n8n, a workflow automation platform.
contentType: overview
diff --git a/docs/integrations/builtin/credentials/google/oauth-generic.md b/docs/integrations/builtin/credentials/google/oauth-generic.md
index 672af1082..d5f8aaf40 100644
--- a/docs/integrations/builtin/credentials/google/oauth-generic.md
+++ b/docs/integrations/builtin/credentials/google/oauth-generic.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google OAuth2 generic
description: Documentation for generic OAuth2 Google credentials. Use these credentials to authenticate Google services in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/google/oauth-single-service.md b/docs/integrations/builtin/credentials/google/oauth-single-service.md
index 3529599f6..4dc10e413 100644
--- a/docs/integrations/builtin/credentials/google/oauth-single-service.md
+++ b/docs/integrations/builtin/credentials/google/oauth-single-service.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google OAuth2 single service
description: Documentation for single service OAuth2 Google credentials. Use these credentials to authenticate Google in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/google/service-account.md b/docs/integrations/builtin/credentials/google/service-account.md
index 603bfbfa5..2f82c6625 100644
--- a/docs/integrations/builtin/credentials/google/service-account.md
+++ b/docs/integrations/builtin/credentials/google/service-account.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Service Account
description: Documentation for service account Google credentials. Use these credentials to authenticate Google in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/gotify.md b/docs/integrations/builtin/credentials/gotify.md
index c1ffad234..3e52d5356 100644
--- a/docs/integrations/builtin/credentials/gotify.md
+++ b/docs/integrations/builtin/credentials/gotify.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Gotify credentials
description: Documentation for Gotify credentials. Use these credentials to authenticate Gotify in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/gotowebinar.md b/docs/integrations/builtin/credentials/gotowebinar.md
index 34629dd8b..23f2999f5 100644
--- a/docs/integrations/builtin/credentials/gotowebinar.md
+++ b/docs/integrations/builtin/credentials/gotowebinar.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: GoToWebinar credentials
description: Documentation for GoToWebinar credentials. Use these credentials to authenticate GoToWebinar in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/grafana.md b/docs/integrations/builtin/credentials/grafana.md
index c706df249..aab1db67f 100644
--- a/docs/integrations/builtin/credentials/grafana.md
+++ b/docs/integrations/builtin/credentials/grafana.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Grafana credentials
description: Documentation for Grafana credentials. Use these credentials to authenticate Grafana in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/grist.md b/docs/integrations/builtin/credentials/grist.md
index b227a4b75..c7e7a14fa 100644
--- a/docs/integrations/builtin/credentials/grist.md
+++ b/docs/integrations/builtin/credentials/grist.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Grist credentials
description: Documentation for Grist credentials. Use these credentials to authenticate Grist in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/groq.md b/docs/integrations/builtin/credentials/groq.md
index e62246a00..9f57ddb7f 100644
--- a/docs/integrations/builtin/credentials/groq.md
+++ b/docs/integrations/builtin/credentials/groq.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Groq credentials
description: Documentation for the Groq credentials. Use these credentials to authenticate Groq in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/gumroad.md b/docs/integrations/builtin/credentials/gumroad.md
index 52eb57ec8..5f3032d64 100644
--- a/docs/integrations/builtin/credentials/gumroad.md
+++ b/docs/integrations/builtin/credentials/gumroad.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Gumroad credentials
description: Documentation for Gumroad credentials. Use these credentials to authenticate Gumroad in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/halopsa.md b/docs/integrations/builtin/credentials/halopsa.md
index 6bae28810..d3ce9e523 100644
--- a/docs/integrations/builtin/credentials/halopsa.md
+++ b/docs/integrations/builtin/credentials/halopsa.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: HaloPSA credentials
description: Documentation for HaloPSA credentials. Use these credentials to authenticate HaloPSA in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/harvest.md b/docs/integrations/builtin/credentials/harvest.md
index f15a99711..332099097 100644
--- a/docs/integrations/builtin/credentials/harvest.md
+++ b/docs/integrations/builtin/credentials/harvest.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Harvest credentials
description: Documentation for Harvest credentials. Use these credentials to authenticate Harvest in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/helpscout.md b/docs/integrations/builtin/credentials/helpscout.md
index fb87ce0bf..22f78a61b 100644
--- a/docs/integrations/builtin/credentials/helpscout.md
+++ b/docs/integrations/builtin/credentials/helpscout.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Help Scout credentials
description: Documentation for Help Scout credentials. Use these credentials to authenticate Help Scout in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/highlevel.md b/docs/integrations/builtin/credentials/highlevel.md
index 779cebdb5..7714624c3 100644
--- a/docs/integrations/builtin/credentials/highlevel.md
+++ b/docs/integrations/builtin/credentials/highlevel.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: HighLevel credentials
description: Documentation for HighLevel credentials. Use these credentials to authenticate HighLevel in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/homeassistant.md b/docs/integrations/builtin/credentials/homeassistant.md
index 3c1808518..6bc60f992 100644
--- a/docs/integrations/builtin/credentials/homeassistant.md
+++ b/docs/integrations/builtin/credentials/homeassistant.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Home Assistant credentials
description: Documentation for Home Assistant credentials. Use these credentials to authenticate Home Assistant in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/httprequest.md b/docs/integrations/builtin/credentials/httprequest.md
index e9e922d06..c6344a103 100644
--- a/docs/integrations/builtin/credentials/httprequest.md
+++ b/docs/integrations/builtin/credentials/httprequest.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: HTTP Request credentials
description: Documentation for HTTP Request credentials. Use these credentials to authenticate HTTP Request in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/hubspot.md b/docs/integrations/builtin/credentials/hubspot.md
index b1e01c76c..b46c1e103 100644
--- a/docs/integrations/builtin/credentials/hubspot.md
+++ b/docs/integrations/builtin/credentials/hubspot.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: HubSpot credentials
description: Documentation for HubSpot credentials. Use these credentials to authenticate HubSpot in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/huggingface.md b/docs/integrations/builtin/credentials/huggingface.md
index 85a19985d..420352aeb 100644
--- a/docs/integrations/builtin/credentials/huggingface.md
+++ b/docs/integrations/builtin/credentials/huggingface.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Hugging Face credentials
description: Documentation for the Hugging Face credentials. Use these credentials to authenticate Hugging Face in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/humanticai.md b/docs/integrations/builtin/credentials/humanticai.md
index bebedc7b8..41707c821 100644
--- a/docs/integrations/builtin/credentials/humanticai.md
+++ b/docs/integrations/builtin/credentials/humanticai.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Humantic AI credentials
description: Documentation for Humantic AI credentials. Use these credentials to authenticate Humantic AI in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/hunter.md b/docs/integrations/builtin/credentials/hunter.md
index 3b9a2a53b..441f3ec2a 100644
--- a/docs/integrations/builtin/credentials/hunter.md
+++ b/docs/integrations/builtin/credentials/hunter.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Hunter credentials
description: Documentation for Hunter credentials. Use these credentials to authenticate Hunter in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/hybridanalysis.md b/docs/integrations/builtin/credentials/hybridanalysis.md
index 2d05804c0..ee8072513 100644
--- a/docs/integrations/builtin/credentials/hybridanalysis.md
+++ b/docs/integrations/builtin/credentials/hybridanalysis.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Hybrid Analysis credentials
description: Documentation for the Hybrid Analysis credentials. Use these credentials to authenticate Hybrid Analysis in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/imap.md b/docs/integrations/builtin/credentials/imap.md
index 3b6b55523..14c2306c9 100644
--- a/docs/integrations/builtin/credentials/imap.md
+++ b/docs/integrations/builtin/credentials/imap.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: IMAP credentials
description: Documentation for IMAP credentials. Use these credentials to authenticate IMAP in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/impervawaf.md b/docs/integrations/builtin/credentials/impervawaf.md
index bc78a2d60..8a54045db 100644
--- a/docs/integrations/builtin/credentials/impervawaf.md
+++ b/docs/integrations/builtin/credentials/impervawaf.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Imperva WAF credentials
description: Documentation for the Imperva WAF credentials. Use these credentials to authenticate Imperva WAF in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/index.md b/docs/integrations/builtin/credentials/index.md
index a9f32e879..26d6441b3 100644
--- a/docs/integrations/builtin/credentials/index.md
+++ b/docs/integrations/builtin/credentials/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/integrations/builtin/credentials/intercom.md b/docs/integrations/builtin/credentials/intercom.md
index 82b35b744..5393fa719 100644
--- a/docs/integrations/builtin/credentials/intercom.md
+++ b/docs/integrations/builtin/credentials/intercom.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Intercom credentials
description: Documentation for Intercom credentials. Use these credentials to authenticate Intercom in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/invoiceninja.md b/docs/integrations/builtin/credentials/invoiceninja.md
index 1ab4b9887..ab0abc3e6 100644
--- a/docs/integrations/builtin/credentials/invoiceninja.md
+++ b/docs/integrations/builtin/credentials/invoiceninja.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Invoice Ninja credentials
description: Documentation for Invoice Ninja credentials. Use these credentials to authenticate Invoice Ninja in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/iterable.md b/docs/integrations/builtin/credentials/iterable.md
index 9cd078938..75b6c3319 100644
--- a/docs/integrations/builtin/credentials/iterable.md
+++ b/docs/integrations/builtin/credentials/iterable.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Iterable credentials
description: Documentation for Iterable credentials. Use these credentials to authenticate Iterable in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/jenkins.md b/docs/integrations/builtin/credentials/jenkins.md
index bb5150224..fef5aeb02 100644
--- a/docs/integrations/builtin/credentials/jenkins.md
+++ b/docs/integrations/builtin/credentials/jenkins.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Jenkins credentials
description: Documentation for Jenkins credentials. Use these credentials to authenticate Jenkins in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/jira.md b/docs/integrations/builtin/credentials/jira.md
index 4fb9791ba..007d2c5d3 100644
--- a/docs/integrations/builtin/credentials/jira.md
+++ b/docs/integrations/builtin/credentials/jira.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Jira credentials
description: Documentation for Jira credentials. Use these credentials to authenticate Jira in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/jotform.md b/docs/integrations/builtin/credentials/jotform.md
index 48e07e462..176c085a4 100644
--- a/docs/integrations/builtin/credentials/jotform.md
+++ b/docs/integrations/builtin/credentials/jotform.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: JotForm credentials
description: Documentation for JotForm credentials. Use these credentials to authenticate JotForm in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/jwt.md b/docs/integrations/builtin/credentials/jwt.md
index 14c794c54..ab3716a2f 100644
--- a/docs/integrations/builtin/credentials/jwt.md
+++ b/docs/integrations/builtin/credentials/jwt.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: JWT credentials
description: Documentation for the JWT credentials. Use these credentials to authenticate JWT in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/kafka.md b/docs/integrations/builtin/credentials/kafka.md
index 12467c662..51e99002f 100644
--- a/docs/integrations/builtin/credentials/kafka.md
+++ b/docs/integrations/builtin/credentials/kafka.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Kafka credentials
description: Documentation for Kafka credentials. Use these credentials to authenticate Kafka in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/keap.md b/docs/integrations/builtin/credentials/keap.md
index 271564d5c..8fb63fa86 100644
--- a/docs/integrations/builtin/credentials/keap.md
+++ b/docs/integrations/builtin/credentials/keap.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Keap credentials
description: Documentation for Keap credentials. Use these credentials to authenticate Keap in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/kibana.md b/docs/integrations/builtin/credentials/kibana.md
index 804117b13..ed83f6be2 100644
--- a/docs/integrations/builtin/credentials/kibana.md
+++ b/docs/integrations/builtin/credentials/kibana.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Kibana credentials
description: Documentation for the Kibana credentials. Use these credentials to authenticate Kibana in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/kitemaker.md b/docs/integrations/builtin/credentials/kitemaker.md
index b215370e3..15dcc5889 100644
--- a/docs/integrations/builtin/credentials/kitemaker.md
+++ b/docs/integrations/builtin/credentials/kitemaker.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Kitemaker credentials
description: Documentation for Kitemaker credentials. Use these credentials to authenticate Kitemaker in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/kobotoolbox.md b/docs/integrations/builtin/credentials/kobotoolbox.md
index d395f694a..41b8ad64d 100644
--- a/docs/integrations/builtin/credentials/kobotoolbox.md
+++ b/docs/integrations/builtin/credentials/kobotoolbox.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: KoboToolbox credentials
description: Documentation for KoboToolbox credentials. Use these credentials to authenticate KoboToolbox in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/ldap.md b/docs/integrations/builtin/credentials/ldap.md
index e59aa7b1e..cf7c48bc3 100644
--- a/docs/integrations/builtin/credentials/ldap.md
+++ b/docs/integrations/builtin/credentials/ldap.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: LDAP credentials
description: Documentation for the LDAP credentials. Use these credentials to authenticate LDAP in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/lemlist.md b/docs/integrations/builtin/credentials/lemlist.md
index 0ac1f4f68..c6db024b3 100644
--- a/docs/integrations/builtin/credentials/lemlist.md
+++ b/docs/integrations/builtin/credentials/lemlist.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Lemlist credentials
description: Documentation for Lemlist credentials. Use these credentials to authenticate Lemlist in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/line.md b/docs/integrations/builtin/credentials/line.md
index 939558a2d..387ffc74e 100644
--- a/docs/integrations/builtin/credentials/line.md
+++ b/docs/integrations/builtin/credentials/line.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Line credentials
description: Documentation for Line credentials. Use these credentials to authenticate Line in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/linear.md b/docs/integrations/builtin/credentials/linear.md
index 56299c689..efc1a5b9b 100644
--- a/docs/integrations/builtin/credentials/linear.md
+++ b/docs/integrations/builtin/credentials/linear.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Linear credentials
description: Documentation for Linear credentials. Use these credentials to authenticate Linear in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/lingvanex.md b/docs/integrations/builtin/credentials/lingvanex.md
index 085ce2099..1836487c6 100644
--- a/docs/integrations/builtin/credentials/lingvanex.md
+++ b/docs/integrations/builtin/credentials/lingvanex.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: LingvaNex credentials
description: Documentation for LingvaNex credentials. Use these credentials to authenticate LingvaNex in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/linkedin.md b/docs/integrations/builtin/credentials/linkedin.md
index 74317a3b0..0dab748f2 100644
--- a/docs/integrations/builtin/credentials/linkedin.md
+++ b/docs/integrations/builtin/credentials/linkedin.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: LinkedIn credentials
description: Documentation for LinkedIn credentials. Use these credentials to authenticate LinkedIn in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/lonescale.md b/docs/integrations/builtin/credentials/lonescale.md
index e3cca76e1..a764c7bec 100644
--- a/docs/integrations/builtin/credentials/lonescale.md
+++ b/docs/integrations/builtin/credentials/lonescale.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: LoneScale credentials
description: Documentation for LoneScale credentials. Use these credentials to authenticate LoneScale in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/magento2.md b/docs/integrations/builtin/credentials/magento2.md
index 2f38963b0..0e7b47932 100644
--- a/docs/integrations/builtin/credentials/magento2.md
+++ b/docs/integrations/builtin/credentials/magento2.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Magento 2 credentials
description: Documentation for Magento 2 credentials. Use these credentials to authenticate Magento 2 in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/mailcheck.md b/docs/integrations/builtin/credentials/mailcheck.md
index d04d5ef3a..3d7b1e826 100644
--- a/docs/integrations/builtin/credentials/mailcheck.md
+++ b/docs/integrations/builtin/credentials/mailcheck.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mailcheck credentials
description: Documentation for Mailcheck credentials. Use these credentials to authenticate Mailcheck in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/mailchimp.md b/docs/integrations/builtin/credentials/mailchimp.md
index 8fe985a87..964ee6d84 100644
--- a/docs/integrations/builtin/credentials/mailchimp.md
+++ b/docs/integrations/builtin/credentials/mailchimp.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mailchimp credentials
description: Documentation for Mailchimp credentials. Use these credentials to authenticate Mailchimp in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/mailerlite.md b/docs/integrations/builtin/credentials/mailerlite.md
index f43fd81e4..5ae4e21e4 100644
--- a/docs/integrations/builtin/credentials/mailerlite.md
+++ b/docs/integrations/builtin/credentials/mailerlite.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MailerLite credentials
description: Documentation for MailerLite credentials. Use these credentials to authenticate MailerLite in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/mailgun.md b/docs/integrations/builtin/credentials/mailgun.md
index 0715c348e..25602748f 100644
--- a/docs/integrations/builtin/credentials/mailgun.md
+++ b/docs/integrations/builtin/credentials/mailgun.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mailgun credentials
description: Documentation for Mailgun credentials. Use these credentials to authenticate Mailgun in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/mailjet.md b/docs/integrations/builtin/credentials/mailjet.md
index 2621066af..f90c00ea2 100644
--- a/docs/integrations/builtin/credentials/mailjet.md
+++ b/docs/integrations/builtin/credentials/mailjet.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mailjet credentials
description: Documentation for Mailjet credentials. Use these credentials to authenticate Mailjet in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/mandrill.md b/docs/integrations/builtin/credentials/mandrill.md
index dbf13d40a..e7437c099 100644
--- a/docs/integrations/builtin/credentials/mandrill.md
+++ b/docs/integrations/builtin/credentials/mandrill.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mandrill credentials
description: Documentation for Mandrill credentials. Use these credentials to authenticate Mandrill in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/marketstack.md b/docs/integrations/builtin/credentials/marketstack.md
index b1324189e..1188f278e 100644
--- a/docs/integrations/builtin/credentials/marketstack.md
+++ b/docs/integrations/builtin/credentials/marketstack.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Marketstack credentials
description: Documentation for Marketstack credentials. Use these credentials to authenticate Marketstack in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/matrix.md b/docs/integrations/builtin/credentials/matrix.md
index dc965db19..289aa236b 100644
--- a/docs/integrations/builtin/credentials/matrix.md
+++ b/docs/integrations/builtin/credentials/matrix.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Matrix credentials
description: Documentation for Matrix credentials. Use these credentials to authenticate Matrix in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/mattermost.md b/docs/integrations/builtin/credentials/mattermost.md
index adc0704ac..9a38d5260 100644
--- a/docs/integrations/builtin/credentials/mattermost.md
+++ b/docs/integrations/builtin/credentials/mattermost.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mattermost credentials
description: Documentation for Mattermost credentials. Use these credentials to authenticate Mattermost in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/mautic.md b/docs/integrations/builtin/credentials/mautic.md
index 2d48ba67c..ce5c031dc 100644
--- a/docs/integrations/builtin/credentials/mautic.md
+++ b/docs/integrations/builtin/credentials/mautic.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mautic credentials
description: Documentation for Mautic credentials. Use these credentials to authenticate Mautic in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/medium.md b/docs/integrations/builtin/credentials/medium.md
index 6e60b130a..88d7b2e2c 100644
--- a/docs/integrations/builtin/credentials/medium.md
+++ b/docs/integrations/builtin/credentials/medium.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Medium credentials
description: Documentation for Medium credentials. Use these credentials to authenticate Medium in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/messagebird.md b/docs/integrations/builtin/credentials/messagebird.md
index 94518f373..a633e1e0c 100644
--- a/docs/integrations/builtin/credentials/messagebird.md
+++ b/docs/integrations/builtin/credentials/messagebird.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MessageBird credentials
description: Documentation for MessageBird credentials. Use these credentials to authenticate MessageBird in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/metabase.md b/docs/integrations/builtin/credentials/metabase.md
index 15230430b..810002beb 100644
--- a/docs/integrations/builtin/credentials/metabase.md
+++ b/docs/integrations/builtin/credentials/metabase.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Metabase credentials
description: Documentation for Metabase credentials. Use these credentials to authenticate Metabase in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/microsoft.md b/docs/integrations/builtin/credentials/microsoft.md
index 6b8b902d8..4d5c67ce3 100644
--- a/docs/integrations/builtin/credentials/microsoft.md
+++ b/docs/integrations/builtin/credentials/microsoft.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Microsoft credentials
description: Documentation for Microsoft credentials. Use these credentials to authenticate Microsoft in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/microsoftentra.md b/docs/integrations/builtin/credentials/microsoftentra.md
index b915d4b33..4e40a0dd2 100644
--- a/docs/integrations/builtin/credentials/microsoftentra.md
+++ b/docs/integrations/builtin/credentials/microsoftentra.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Microsoft Entra ID credentials
description: Documentation for the Microsoft Entra ID credentials. Use these credentials to authenticate Microsoft Entra ID in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/microsoftsql.md b/docs/integrations/builtin/credentials/microsoftsql.md
index acf4725a9..3746102e8 100644
--- a/docs/integrations/builtin/credentials/microsoftsql.md
+++ b/docs/integrations/builtin/credentials/microsoftsql.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Microsoft SQL credentials
description: Documentation for Microsoft SQL credentials. Use these credentials to authenticate Microsoft SQL in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/mindee.md b/docs/integrations/builtin/credentials/mindee.md
index 55adba392..00df03d86 100644
--- a/docs/integrations/builtin/credentials/mindee.md
+++ b/docs/integrations/builtin/credentials/mindee.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mindee credentials
description: Documentation for Mindee credentials. Use these credentials to authenticate Mindee in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/misp.md b/docs/integrations/builtin/credentials/misp.md
index 11755475a..a6d2b4be5 100644
--- a/docs/integrations/builtin/credentials/misp.md
+++ b/docs/integrations/builtin/credentials/misp.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MISP credentials
description: Documentation for MISP credentials. Use these credentials to authenticate MISP in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/mist.md b/docs/integrations/builtin/credentials/mist.md
index db8d7798b..17247c553 100644
--- a/docs/integrations/builtin/credentials/mist.md
+++ b/docs/integrations/builtin/credentials/mist.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mist credentials
description: Documentation for the Mist credentials. Use these credentials to authenticate Mist in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/mistral.md b/docs/integrations/builtin/credentials/mistral.md
index 6cad21582..1462d33e9 100644
--- a/docs/integrations/builtin/credentials/mistral.md
+++ b/docs/integrations/builtin/credentials/mistral.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mistral Cloud credentials
description: Documentation for the Mistral Cloud credentials. Use these credentials to authenticate Mistral Cloud in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/mocean.md b/docs/integrations/builtin/credentials/mocean.md
index 2d3f34b9d..400206b7b 100644
--- a/docs/integrations/builtin/credentials/mocean.md
+++ b/docs/integrations/builtin/credentials/mocean.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mocean credentials
description: Documentation for Mocean credentials. Use these credentials to authenticate Mocean in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/mondaycom.md b/docs/integrations/builtin/credentials/mondaycom.md
index a8db5cdb2..28771b822 100644
--- a/docs/integrations/builtin/credentials/mondaycom.md
+++ b/docs/integrations/builtin/credentials/mondaycom.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: monday.com credentials
description: Documentation for monday.com credentials. Use these credentials to authenticate monday.com in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/mongodb.md b/docs/integrations/builtin/credentials/mongodb.md
index ca816a027..951c67ac9 100644
--- a/docs/integrations/builtin/credentials/mongodb.md
+++ b/docs/integrations/builtin/credentials/mongodb.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MongoDB credentials
description: Documentation for MongoDB credentials. Use these credentials to authenticate MongoDB in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/monicacrm.md b/docs/integrations/builtin/credentials/monicacrm.md
index 17c3fae25..1aa63bb80 100644
--- a/docs/integrations/builtin/credentials/monicacrm.md
+++ b/docs/integrations/builtin/credentials/monicacrm.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Monica CRM credentials
description: Documentation for Monica CRM credentials. Use these credentials to authenticate Monica CRM in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/motorhead.md b/docs/integrations/builtin/credentials/motorhead.md
index 74f71ca5c..6d6095950 100644
--- a/docs/integrations/builtin/credentials/motorhead.md
+++ b/docs/integrations/builtin/credentials/motorhead.md
@@ -1,6 +1,8 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Motorhead credentials
description: Documentation for the Motorhead credentials. Use these credentials to authenticate Motorhead in n8n, a workflow automation platform.
+contentType: integration
---
# Motorhead credentials
diff --git a/docs/integrations/builtin/credentials/mqtt.md b/docs/integrations/builtin/credentials/mqtt.md
index 358a94097..4531d3ae8 100644
--- a/docs/integrations/builtin/credentials/mqtt.md
+++ b/docs/integrations/builtin/credentials/mqtt.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MQTT credentials
description: Documentation for MQTT credentials. Use these credentials to authenticate MQTT in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/msg91.md b/docs/integrations/builtin/credentials/msg91.md
index d8e63a6d1..872b2b18e 100644
--- a/docs/integrations/builtin/credentials/msg91.md
+++ b/docs/integrations/builtin/credentials/msg91.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MSG91 credentials
description: Documentation for MSG91 credentials. Use these credentials to authenticate MSG91 in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/mysql.md b/docs/integrations/builtin/credentials/mysql.md
index b84fdd7d7..eb00c8178 100644
--- a/docs/integrations/builtin/credentials/mysql.md
+++ b/docs/integrations/builtin/credentials/mysql.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MySQL credentials
description: Documentation for MySQL credentials. Use these credentials to authenticate MySQL in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/nasa.md b/docs/integrations/builtin/credentials/nasa.md
index f8e5add09..944a568ee 100644
--- a/docs/integrations/builtin/credentials/nasa.md
+++ b/docs/integrations/builtin/credentials/nasa.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: NASA credentials
description: Documentation for NASA credentials. Use these credentials to authenticate NASA in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/netlify.md b/docs/integrations/builtin/credentials/netlify.md
index 395a5520e..ac2c13461 100644
--- a/docs/integrations/builtin/credentials/netlify.md
+++ b/docs/integrations/builtin/credentials/netlify.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Netlify credentials
description: Documentation for Netlify credentials. Use these credentials to authenticate Netlify in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/nextcloud.md b/docs/integrations/builtin/credentials/nextcloud.md
index b81b12779..89366c839 100644
--- a/docs/integrations/builtin/credentials/nextcloud.md
+++ b/docs/integrations/builtin/credentials/nextcloud.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Nextcloud credentials
description: Documentation for Nextcloud credentials. Use these credentials to authenticate Nextcloud in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/nocodb.md b/docs/integrations/builtin/credentials/nocodb.md
index ecc802943..1bf10ebe6 100644
--- a/docs/integrations/builtin/credentials/nocodb.md
+++ b/docs/integrations/builtin/credentials/nocodb.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: NocoDB credentials
description: Documentation for NocoDB credentials. Use these credentials to authenticate NocoDB in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/notion.md b/docs/integrations/builtin/credentials/notion.md
index 680c02d81..0178046d3 100644
--- a/docs/integrations/builtin/credentials/notion.md
+++ b/docs/integrations/builtin/credentials/notion.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Notion credentials
description: Documentation for Notion credentials. Use these credentials to authenticate Notion in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/npm.md b/docs/integrations/builtin/credentials/npm.md
index 3f48a4985..132bd0ac6 100644
--- a/docs/integrations/builtin/credentials/npm.md
+++ b/docs/integrations/builtin/credentials/npm.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: npm credentials
description: Documentation for the npm credentials. Use these credentials to authenticate npm in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/odoo.md b/docs/integrations/builtin/credentials/odoo.md
index 3e215b074..fb84df382 100644
--- a/docs/integrations/builtin/credentials/odoo.md
+++ b/docs/integrations/builtin/credentials/odoo.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Odoo credentials
description: Documentation for Odoo credentials. Use these credentials to authenticate Odoo in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/okta.md b/docs/integrations/builtin/credentials/okta.md
index bdd402990..f803d04b6 100644
--- a/docs/integrations/builtin/credentials/okta.md
+++ b/docs/integrations/builtin/credentials/okta.md
@@ -1,6 +1,8 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Okta credentials
description: Documentation for the Okta credentials. Use these credentials to authenticate Okta in n8n, a workflow automation platform.
+contentType: integration
---
# Okta credentials
diff --git a/docs/integrations/builtin/credentials/ollama.md b/docs/integrations/builtin/credentials/ollama.md
index bbe834e79..2ab08b80a 100644
--- a/docs/integrations/builtin/credentials/ollama.md
+++ b/docs/integrations/builtin/credentials/ollama.md
@@ -1,6 +1,8 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Ollama credentials
description: Documentation for the Ollama credentials. Use these credentials to authenticate Ollama in n8n, a workflow automation platform.
+contentType: integration
---
# Ollama credentials
diff --git a/docs/integrations/builtin/credentials/onesimpleapi.md b/docs/integrations/builtin/credentials/onesimpleapi.md
index 534f8355d..3bb2fddd4 100644
--- a/docs/integrations/builtin/credentials/onesimpleapi.md
+++ b/docs/integrations/builtin/credentials/onesimpleapi.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: One Simple API credentials
description: Documentation for One Simple API credentials. Use these credentials to authenticate One Simple API in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/onfleet.md b/docs/integrations/builtin/credentials/onfleet.md
index 6ab95ffcd..e7680bccd 100644
--- a/docs/integrations/builtin/credentials/onfleet.md
+++ b/docs/integrations/builtin/credentials/onfleet.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Onfleet credentials
description: Documentation for Onfleet credentials. Use these credentials to authenticate Onfleet in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/openai.md b/docs/integrations/builtin/credentials/openai.md
index 8e1cf926c..4e7463c57 100644
--- a/docs/integrations/builtin/credentials/openai.md
+++ b/docs/integrations/builtin/credentials/openai.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: OpenAI credentials
description: Documentation for OpenAI credentials. Use these credentials to authenticate OpenAI in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/opencti.md b/docs/integrations/builtin/credentials/opencti.md
index 4996d5f77..5985b4070 100644
--- a/docs/integrations/builtin/credentials/opencti.md
+++ b/docs/integrations/builtin/credentials/opencti.md
@@ -1,6 +1,8 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: OpenCTI credentials
description: Documentation for the OpenCTI credentials. Use these credentials to authenticate OpenCTI in n8n, a workflow automation platform.
+contentType: integration
---
# OpenCTI credentials
diff --git a/docs/integrations/builtin/credentials/openweathermap.md b/docs/integrations/builtin/credentials/openweathermap.md
index 762399279..5f7e9f0e4 100644
--- a/docs/integrations/builtin/credentials/openweathermap.md
+++ b/docs/integrations/builtin/credentials/openweathermap.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: OpenWeatherMap credentials
description: Documentation for OpenWeatherMap credentials. Use these credentials to authenticate OpenWeatherMap in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/orbit.md b/docs/integrations/builtin/credentials/orbit.md
index 6510e88f7..723abf1e0 100644
--- a/docs/integrations/builtin/credentials/orbit.md
+++ b/docs/integrations/builtin/credentials/orbit.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Orbit credentials
description: Documentation for Orbit credentials. Use these credentials to authenticate Orbit in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/oura.md b/docs/integrations/builtin/credentials/oura.md
index 4ba7da4ad..d1ebb4856 100644
--- a/docs/integrations/builtin/credentials/oura.md
+++ b/docs/integrations/builtin/credentials/oura.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Oura credentials
description: Documentation for Oura credentials. Use these credentials to authenticate Oura in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/paddle.md b/docs/integrations/builtin/credentials/paddle.md
index 125aff5c3..c6879d8b5 100644
--- a/docs/integrations/builtin/credentials/paddle.md
+++ b/docs/integrations/builtin/credentials/paddle.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Paddle credentials
description: Documentation for Paddle credentials. Use these credentials to authenticate Paddle in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/pagerduty.md b/docs/integrations/builtin/credentials/pagerduty.md
index 3b0a1940f..0a382cb09 100644
--- a/docs/integrations/builtin/credentials/pagerduty.md
+++ b/docs/integrations/builtin/credentials/pagerduty.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: PagerDuty credentials
description: Documentation for PagerDuty credentials. Use these credentials to authenticate PagerDuty in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/paypal.md b/docs/integrations/builtin/credentials/paypal.md
index 5987a8825..34b625460 100644
--- a/docs/integrations/builtin/credentials/paypal.md
+++ b/docs/integrations/builtin/credentials/paypal.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: PayPal credentials
description: Documentation for PayPal credentials. Use these credentials to authenticate PayPal in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/peekalink.md b/docs/integrations/builtin/credentials/peekalink.md
index 3b40c0035..50d170aa6 100644
--- a/docs/integrations/builtin/credentials/peekalink.md
+++ b/docs/integrations/builtin/credentials/peekalink.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Peekalink credentials
description: Documentation for Peekalink credentials. Use these credentials to authenticate Peekalink in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/phantombuster.md b/docs/integrations/builtin/credentials/phantombuster.md
index e0a423074..ec1aa75ac 100644
--- a/docs/integrations/builtin/credentials/phantombuster.md
+++ b/docs/integrations/builtin/credentials/phantombuster.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: PhantomBuster credentials
description: Documentation for PhantomBuster credentials. Use these credentials to authenticate PhantomBuster in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/philipshue.md b/docs/integrations/builtin/credentials/philipshue.md
index d30ffcca2..909efabeb 100644
--- a/docs/integrations/builtin/credentials/philipshue.md
+++ b/docs/integrations/builtin/credentials/philipshue.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Philips Hue credentials
description: Documentation for Philips Hue credentials. Use these credentials to authenticate Philips Hue in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/pinecone.md b/docs/integrations/builtin/credentials/pinecone.md
index 4e3585e7d..db32d8cf5 100644
--- a/docs/integrations/builtin/credentials/pinecone.md
+++ b/docs/integrations/builtin/credentials/pinecone.md
@@ -1,6 +1,8 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Pinecone credentials
description: Documentation for the Pinecone credentials. Use these credentials to authenticate Pinecone in n8n, a workflow automation platform.
+contentType: integration
---
# Pinecone credentials
diff --git a/docs/integrations/builtin/credentials/pipedrive.md b/docs/integrations/builtin/credentials/pipedrive.md
index a8aee4db6..783589072 100644
--- a/docs/integrations/builtin/credentials/pipedrive.md
+++ b/docs/integrations/builtin/credentials/pipedrive.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Pipedrive credentials
description: Documentation for Pipedrive credentials. Use these credentials to authenticate Pipedrive in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/plivo.md b/docs/integrations/builtin/credentials/plivo.md
index 425d83084..c82104368 100644
--- a/docs/integrations/builtin/credentials/plivo.md
+++ b/docs/integrations/builtin/credentials/plivo.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Plivo credentials
description: Documentation for Plivo credentials. Use these credentials to authenticate Plivo in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/postgres.md b/docs/integrations/builtin/credentials/postgres.md
index 023ccd9b8..6bcec2338 100644
--- a/docs/integrations/builtin/credentials/postgres.md
+++ b/docs/integrations/builtin/credentials/postgres.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Postgres credentials
description: Documentation for Postgres credentials. Use these credentials to authenticate Postgres in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/posthog.md b/docs/integrations/builtin/credentials/posthog.md
index 39826055e..a5780f6e4 100644
--- a/docs/integrations/builtin/credentials/posthog.md
+++ b/docs/integrations/builtin/credentials/posthog.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: PostHog credentials
description: Documentation for PostHog credentials. Use these credentials to authenticate PostHog in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/postmark.md b/docs/integrations/builtin/credentials/postmark.md
index e3143f7ab..16f8dc50d 100644
--- a/docs/integrations/builtin/credentials/postmark.md
+++ b/docs/integrations/builtin/credentials/postmark.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Postmark credentials
description: Documentation for Postmark credentials. Use these credentials to authenticate Postmark in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/profitwell.md b/docs/integrations/builtin/credentials/profitwell.md
index ef51a175f..a285158d1 100644
--- a/docs/integrations/builtin/credentials/profitwell.md
+++ b/docs/integrations/builtin/credentials/profitwell.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: ProfitWell credentials
description: Documentation for ProfitWell credentials. Use these credentials to authenticate ProfitWell in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/pushbullet.md b/docs/integrations/builtin/credentials/pushbullet.md
index 47ca8627f..55f3ed9d0 100644
--- a/docs/integrations/builtin/credentials/pushbullet.md
+++ b/docs/integrations/builtin/credentials/pushbullet.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Pushbullet credentials
description: Documentation for Pushbullet credentials. Use these credentials to authenticate Pushbullet in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/pushcut.md b/docs/integrations/builtin/credentials/pushcut.md
index c88b55bef..86d842c8f 100644
--- a/docs/integrations/builtin/credentials/pushcut.md
+++ b/docs/integrations/builtin/credentials/pushcut.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Pushcut credentials
description: Documentation for Pushcut credentials. Use these credentials to authenticate Pushcut in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/pushover.md b/docs/integrations/builtin/credentials/pushover.md
index 6a6af7e96..2827ce571 100644
--- a/docs/integrations/builtin/credentials/pushover.md
+++ b/docs/integrations/builtin/credentials/pushover.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Pushover credentials
description: Documentation for Pushover credentials. Use these credentials to authenticate Pushover in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/qdrant.md b/docs/integrations/builtin/credentials/qdrant.md
index c5de97fdf..a739b5cd9 100644
--- a/docs/integrations/builtin/credentials/qdrant.md
+++ b/docs/integrations/builtin/credentials/qdrant.md
@@ -1,6 +1,8 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Qdrant credentials
description: Documentation for the Qdrant credentials. Use these credentials to authenticate Qdrant in n8n, a workflow automation platform.
+contentType: integration
---
# Qdrant credentials
diff --git a/docs/integrations/builtin/credentials/qradar.md b/docs/integrations/builtin/credentials/qradar.md
index b2b148840..4948455a2 100644
--- a/docs/integrations/builtin/credentials/qradar.md
+++ b/docs/integrations/builtin/credentials/qradar.md
@@ -1,6 +1,8 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: QRadar credentials
description: Documentation for the QRadar credentials. Use these credentials to authenticate QRadar in n8n, a workflow automation platform.
+contentType: integration
---
# QRadar credentials
diff --git a/docs/integrations/builtin/credentials/qualys.md b/docs/integrations/builtin/credentials/qualys.md
index 56bdc153d..5bf69f7d7 100644
--- a/docs/integrations/builtin/credentials/qualys.md
+++ b/docs/integrations/builtin/credentials/qualys.md
@@ -1,6 +1,8 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Qualys credentials
description: Documentation for the Qualys credentials. Use these credentials to authenticate Qualys in n8n, a workflow automation platform.
+contentType: integration
---
# Qualys credentials
diff --git a/docs/integrations/builtin/credentials/questdb.md b/docs/integrations/builtin/credentials/questdb.md
index 3293bc715..3f75c4c66 100644
--- a/docs/integrations/builtin/credentials/questdb.md
+++ b/docs/integrations/builtin/credentials/questdb.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: QuestDB credentials
description: Documentation for QuestDB credentials. Use these credentials to authenticate QuestDB in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/quickbase.md b/docs/integrations/builtin/credentials/quickbase.md
index 9ffcdbe65..1b175a736 100644
--- a/docs/integrations/builtin/credentials/quickbase.md
+++ b/docs/integrations/builtin/credentials/quickbase.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Quick Base credentials
description: Documentation for Quick Base credentials. Use these credentials to authenticate Quick Base in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/quickbooks.md b/docs/integrations/builtin/credentials/quickbooks.md
index ac08638d3..6d87d312a 100644
--- a/docs/integrations/builtin/credentials/quickbooks.md
+++ b/docs/integrations/builtin/credentials/quickbooks.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: QuickBooks credentials
description: Documentation for QuickBooks credentials. Use these credentials to authenticate QuickBooks in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/rabbitmq.md b/docs/integrations/builtin/credentials/rabbitmq.md
index a21097342..ae479981c 100644
--- a/docs/integrations/builtin/credentials/rabbitmq.md
+++ b/docs/integrations/builtin/credentials/rabbitmq.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: RabbitMQ credentials
description: Documentation for RabbitMQ credentials. Use these credentials to authenticate RabbitMQ in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/raindrop.md b/docs/integrations/builtin/credentials/raindrop.md
index a33bdb240..6c8053ca4 100644
--- a/docs/integrations/builtin/credentials/raindrop.md
+++ b/docs/integrations/builtin/credentials/raindrop.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Raindrop credentials
description: Documentation for Raindrop credentials. Use these credentials to authenticate Raindrop in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/recordedfuture.md b/docs/integrations/builtin/credentials/recordedfuture.md
index b904f1126..28302e1d9 100644
--- a/docs/integrations/builtin/credentials/recordedfuture.md
+++ b/docs/integrations/builtin/credentials/recordedfuture.md
@@ -1,6 +1,8 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Recorded Future credentials
description: Documentation for the Recorded Future credentials. Use these credentials to authenticate Recorded Future in n8n, a workflow automation platform.
+contentType: integration
---
# Recorded Future credentials
diff --git a/docs/integrations/builtin/credentials/reddit.md b/docs/integrations/builtin/credentials/reddit.md
index 524ec0588..1995b9bf0 100644
--- a/docs/integrations/builtin/credentials/reddit.md
+++ b/docs/integrations/builtin/credentials/reddit.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Reddit credentials
description: Documentation for Reddit credentials. Use these credentials to authenticate Reddit in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/redis.md b/docs/integrations/builtin/credentials/redis.md
index 20ff1ea88..94f50f9fa 100644
--- a/docs/integrations/builtin/credentials/redis.md
+++ b/docs/integrations/builtin/credentials/redis.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Redis credentials
description: Documentation for Redis credentials. Use these credentials to authenticate Redis in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/rocketchat.md b/docs/integrations/builtin/credentials/rocketchat.md
index 23aa174fc..c7230ca66 100644
--- a/docs/integrations/builtin/credentials/rocketchat.md
+++ b/docs/integrations/builtin/credentials/rocketchat.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Rocket.Chat credentials
description: Documentation for Rocket.Chat credentials. Use these credentials to authenticate Rocket.Chat in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/rundeck.md b/docs/integrations/builtin/credentials/rundeck.md
index ce47ebbac..864cf635e 100644
--- a/docs/integrations/builtin/credentials/rundeck.md
+++ b/docs/integrations/builtin/credentials/rundeck.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Rundeck credentials
description: Documentation for Rundeck credentials. Use these credentials to authenticate Rundeck in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/s3.md b/docs/integrations/builtin/credentials/s3.md
index aa7a8904b..3b457d536 100644
--- a/docs/integrations/builtin/credentials/s3.md
+++ b/docs/integrations/builtin/credentials/s3.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: S3 credentials
description: Documentation for S3 credentials. Use these credentials to authenticate S3 in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/salesforce.md b/docs/integrations/builtin/credentials/salesforce.md
index 6095dfe31..ab63d326d 100644
--- a/docs/integrations/builtin/credentials/salesforce.md
+++ b/docs/integrations/builtin/credentials/salesforce.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Salesforce credentials
description: Documentation for Salesforce credentials. Use these credentials to authenticate Salesforce in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/salesmate.md b/docs/integrations/builtin/credentials/salesmate.md
index 654f2b5a1..ee1d6d025 100644
--- a/docs/integrations/builtin/credentials/salesmate.md
+++ b/docs/integrations/builtin/credentials/salesmate.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Salesmate credentials
description: Documentation for Salesmate credentials. Use these credentials to authenticate Salesmate in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/seatable.md b/docs/integrations/builtin/credentials/seatable.md
index d9eedce87..1fa8dc357 100644
--- a/docs/integrations/builtin/credentials/seatable.md
+++ b/docs/integrations/builtin/credentials/seatable.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SeaTable credentials
description: Documentation for SeaTable credentials. Use these credentials to authenticate SeaTable in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/securityscorecard.md b/docs/integrations/builtin/credentials/securityscorecard.md
index 6c3893dc6..83c60f765 100644
--- a/docs/integrations/builtin/credentials/securityscorecard.md
+++ b/docs/integrations/builtin/credentials/securityscorecard.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SecurityScorecard credentials
description: Documentation for SecurityScorecard credentials. Use these credentials to authenticate SecurityScorecard in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/segment.md b/docs/integrations/builtin/credentials/segment.md
index 4326a31aa..89b5c0c28 100644
--- a/docs/integrations/builtin/credentials/segment.md
+++ b/docs/integrations/builtin/credentials/segment.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Segment credentials
description: Documentation for Segment credentials. Use these credentials to authenticate Segment in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/sekoia.md b/docs/integrations/builtin/credentials/sekoia.md
index 73d5f92f9..c2d7051f8 100644
--- a/docs/integrations/builtin/credentials/sekoia.md
+++ b/docs/integrations/builtin/credentials/sekoia.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Sekoia credentials
description: Documentation for the Sekoia credentials. Use these credentials to authenticate Sekoia in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/sendemail.md b/docs/integrations/builtin/credentials/sendemail.md
index 434161ba2..01c83334f 100644
--- a/docs/integrations/builtin/credentials/sendemail.md
+++ b/docs/integrations/builtin/credentials/sendemail.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Send Email credentials
description: Documentation for Send Email credentials. Use these credentials to authenticate Send Email in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/sendgrid.md b/docs/integrations/builtin/credentials/sendgrid.md
index 507ccc5fc..63deb0ba4 100644
--- a/docs/integrations/builtin/credentials/sendgrid.md
+++ b/docs/integrations/builtin/credentials/sendgrid.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SendGrid credentials
description: Documentation for SendGrid credentials. Use these credentials to authenticate SendGrid in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/sendy.md b/docs/integrations/builtin/credentials/sendy.md
index 09b05ea9c..17986723a 100644
--- a/docs/integrations/builtin/credentials/sendy.md
+++ b/docs/integrations/builtin/credentials/sendy.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Sendy credentials
description: Documentation for Sendy credentials. Use these credentials to authenticate Sendy in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/sentryio.md b/docs/integrations/builtin/credentials/sentryio.md
index f2ce5372a..3bf60eeae 100644
--- a/docs/integrations/builtin/credentials/sentryio.md
+++ b/docs/integrations/builtin/credentials/sentryio.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Sentry.io credentials
description: Documentation for Sentry.io credentials. Use these credentials to authenticate Sentry.io in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/serp.md b/docs/integrations/builtin/credentials/serp.md
index d03f1a52e..94a36d96e 100644
--- a/docs/integrations/builtin/credentials/serp.md
+++ b/docs/integrations/builtin/credentials/serp.md
@@ -1,6 +1,8 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Serp credentials
description: Documentation for the Serp credentials. Use these credentials to authenticate Serp in n8n, a workflow automation platform.
+contentType: integration
---
# Serp credentials
diff --git a/docs/integrations/builtin/credentials/servicenow.md b/docs/integrations/builtin/credentials/servicenow.md
index 46aebedbd..8eec31f56 100644
--- a/docs/integrations/builtin/credentials/servicenow.md
+++ b/docs/integrations/builtin/credentials/servicenow.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: ServiceNow credentials
description: Documentation for ServiceNow credentials. Use these credentials to authenticate ServiceNow in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/shopify.md b/docs/integrations/builtin/credentials/shopify.md
index 7fd4807f9..dc7173e25 100644
--- a/docs/integrations/builtin/credentials/shopify.md
+++ b/docs/integrations/builtin/credentials/shopify.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Shopify credentials
description: Documentation for Shopify credentials. Use these credentials to authenticate Shopify in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/shuffler.md b/docs/integrations/builtin/credentials/shuffler.md
index 6dcf7a7bd..9c903d847 100644
--- a/docs/integrations/builtin/credentials/shuffler.md
+++ b/docs/integrations/builtin/credentials/shuffler.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Shuffler credentials
description: Documentation for the Shuffler credentials. Use these credentials to authenticate Shuffle in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/signl4.md b/docs/integrations/builtin/credentials/signl4.md
index bd9162380..236e41da7 100644
--- a/docs/integrations/builtin/credentials/signl4.md
+++ b/docs/integrations/builtin/credentials/signl4.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SIGNL4 credentials
description: Documentation for SIGNL4 credentials. Use these credentials to authenticate SIGNL4 in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/slack.md b/docs/integrations/builtin/credentials/slack.md
index b5a9ff459..df8be8730 100644
--- a/docs/integrations/builtin/credentials/slack.md
+++ b/docs/integrations/builtin/credentials/slack.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Slack credentials
description: Documentation for Slack credentials. Use these credentials to authenticate Slack in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/sms77.md b/docs/integrations/builtin/credentials/sms77.md
index c335fec9c..7256fe6ae 100644
--- a/docs/integrations/builtin/credentials/sms77.md
+++ b/docs/integrations/builtin/credentials/sms77.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: seven credentials
description: Documentation for seven credentials. Use these credentials to authenticate seven in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/snowflake.md b/docs/integrations/builtin/credentials/snowflake.md
index 14061b526..1ead86030 100644
--- a/docs/integrations/builtin/credentials/snowflake.md
+++ b/docs/integrations/builtin/credentials/snowflake.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Snowflake credentials
description: Documentation for Snowflake credentials. Use these credentials to authenticate Snowflake in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/splunk.md b/docs/integrations/builtin/credentials/splunk.md
index 144b39b34..a827c6c53 100644
--- a/docs/integrations/builtin/credentials/splunk.md
+++ b/docs/integrations/builtin/credentials/splunk.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Splunk credentials
description: Documentation for Splunk credentials. Use these credentials to authenticate Splunk in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/spontit.md b/docs/integrations/builtin/credentials/spontit.md
index 3db8cdd79..929d84016 100644
--- a/docs/integrations/builtin/credentials/spontit.md
+++ b/docs/integrations/builtin/credentials/spontit.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Spontit credentials
description: Documentation for Spontit credentials. Use these credentials to authenticate Spontit in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/spotify.md b/docs/integrations/builtin/credentials/spotify.md
index 52fed586e..a2f5f84ef 100644
--- a/docs/integrations/builtin/credentials/spotify.md
+++ b/docs/integrations/builtin/credentials/spotify.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Spotify credentials
description: Documentation for Spotify credentials. Use these credentials to authenticate Spotify in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/ssh.md b/docs/integrations/builtin/credentials/ssh.md
index 19f0cb5db..77c7fd27e 100644
--- a/docs/integrations/builtin/credentials/ssh.md
+++ b/docs/integrations/builtin/credentials/ssh.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SSH credentials
description: Documentation for SSH credentials. Use these credentials to authenticate SSH in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/stackby.md b/docs/integrations/builtin/credentials/stackby.md
index 6b45e1864..e809d5c80 100644
--- a/docs/integrations/builtin/credentials/stackby.md
+++ b/docs/integrations/builtin/credentials/stackby.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Stackby credentials
description: Documentation for Stackby credentials. Use these credentials to authenticate Stackby in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/storyblok.md b/docs/integrations/builtin/credentials/storyblok.md
index 049b0693d..674afd019 100644
--- a/docs/integrations/builtin/credentials/storyblok.md
+++ b/docs/integrations/builtin/credentials/storyblok.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Storyblok credentials
description: Documentation for Storyblok credentials. Use these credentials to authenticate Storyblok in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/strapi.md b/docs/integrations/builtin/credentials/strapi.md
index 1622f7109..c450c40b6 100644
--- a/docs/integrations/builtin/credentials/strapi.md
+++ b/docs/integrations/builtin/credentials/strapi.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Strapi credentials
description: Documentation for Strapi credentials. Use these credentials to authenticate Strapi in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/strava.md b/docs/integrations/builtin/credentials/strava.md
index 481353094..d4345f6f9 100644
--- a/docs/integrations/builtin/credentials/strava.md
+++ b/docs/integrations/builtin/credentials/strava.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Strava credentials
description: Documentation for Strava credentials. Use these credentials to authenticate Strava in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/stripe.md b/docs/integrations/builtin/credentials/stripe.md
index e8e6adea6..be0648a91 100644
--- a/docs/integrations/builtin/credentials/stripe.md
+++ b/docs/integrations/builtin/credentials/stripe.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Stripe credentials
description: Documentation for Stripe credentials. Use these credentials to authenticate Stripe in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/supabase.md b/docs/integrations/builtin/credentials/supabase.md
index acbd192c1..2e959e330 100644
--- a/docs/integrations/builtin/credentials/supabase.md
+++ b/docs/integrations/builtin/credentials/supabase.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Supabase credentials
description: Documentation for Supabase credentials. Use these credentials to authenticate Supabase in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/surveymonkey.md b/docs/integrations/builtin/credentials/surveymonkey.md
index 1aeb0b18a..f5c98d99b 100644
--- a/docs/integrations/builtin/credentials/surveymonkey.md
+++ b/docs/integrations/builtin/credentials/surveymonkey.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SurveyMonkey credentials
description: Documentation for SurveyMonkey credentials. Use these credentials to authenticate SurveyMonkey in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/syncromsp.md b/docs/integrations/builtin/credentials/syncromsp.md
index d3dd6c410..002aebf26 100644
--- a/docs/integrations/builtin/credentials/syncromsp.md
+++ b/docs/integrations/builtin/credentials/syncromsp.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SyncroMSP credentials
description: Documentation for SyncroMSP credentials. Use these credentials to authenticate SyncroMSP in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/taiga.md b/docs/integrations/builtin/credentials/taiga.md
index 361779c72..3fa970ba0 100644
--- a/docs/integrations/builtin/credentials/taiga.md
+++ b/docs/integrations/builtin/credentials/taiga.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Taiga credentials
description: Documentation for Taiga credentials. Use these credentials to authenticate Taiga in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/tapfiliate.md b/docs/integrations/builtin/credentials/tapfiliate.md
index 54dd9ae7f..920b8bf80 100644
--- a/docs/integrations/builtin/credentials/tapfiliate.md
+++ b/docs/integrations/builtin/credentials/tapfiliate.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Tapfiliate credentials
description: Documentation for Tapfiliate credentials. Use these credentials to authenticate Tapfiliate in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/telegram.md b/docs/integrations/builtin/credentials/telegram.md
index bac102b5e..5a9e59521 100644
--- a/docs/integrations/builtin/credentials/telegram.md
+++ b/docs/integrations/builtin/credentials/telegram.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Telegram credentials
description: Documentation for Telegram credentials. Use these credentials to authenticate Telegram in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/thehive.md b/docs/integrations/builtin/credentials/thehive.md
index 86be41749..f04f6791d 100644
--- a/docs/integrations/builtin/credentials/thehive.md
+++ b/docs/integrations/builtin/credentials/thehive.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: TheHive credentials
description: Documentation for TheHive credentials. Use these credentials to authenticate TheHive in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/thehive5.md b/docs/integrations/builtin/credentials/thehive5.md
index adcb835de..cae4697d7 100644
--- a/docs/integrations/builtin/credentials/thehive5.md
+++ b/docs/integrations/builtin/credentials/thehive5.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: TheHive 5 credentials
description: Documentation for TheHive 5 credentials. Use these credentials to authenticate TheHive in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/timescaledb.md b/docs/integrations/builtin/credentials/timescaledb.md
index 8319abc4b..ccc9d5d20 100644
--- a/docs/integrations/builtin/credentials/timescaledb.md
+++ b/docs/integrations/builtin/credentials/timescaledb.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: TimescaleDB credentials
description: Documentation for TimescaleDB credentials. Use these credentials to authenticate TimescaleDB in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/todoist.md b/docs/integrations/builtin/credentials/todoist.md
index 33ee7eddb..0b91f6564 100644
--- a/docs/integrations/builtin/credentials/todoist.md
+++ b/docs/integrations/builtin/credentials/todoist.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Todoist credentials
description: Documentation for Todoist credentials. Use these credentials to authenticate Todoist in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/toggl.md b/docs/integrations/builtin/credentials/toggl.md
index 9bdcb0c9d..bcd067350 100644
--- a/docs/integrations/builtin/credentials/toggl.md
+++ b/docs/integrations/builtin/credentials/toggl.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Toggl credentials
description: Documentation for Toggl credentials. Use these credentials to authenticate Toggl in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/totp.md b/docs/integrations/builtin/credentials/totp.md
index 93021fce8..550e2b607 100644
--- a/docs/integrations/builtin/credentials/totp.md
+++ b/docs/integrations/builtin/credentials/totp.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: TOTP credentials
description: Documentation for TOTP credentials. Use these credentials to authenticate TOTP in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/travisci.md b/docs/integrations/builtin/credentials/travisci.md
index 35f04af7f..9f75729ba 100644
--- a/docs/integrations/builtin/credentials/travisci.md
+++ b/docs/integrations/builtin/credentials/travisci.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Travis CI credentials
description: Documentation for Travis CI credentials. Use these credentials to authenticate Travis CI in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/trellixepo.md b/docs/integrations/builtin/credentials/trellixepo.md
index 1b294b7df..a979a2094 100644
--- a/docs/integrations/builtin/credentials/trellixepo.md
+++ b/docs/integrations/builtin/credentials/trellixepo.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Trellix ePO credentials
description: Documentation for the Trellix ePO credentials. Use these credentials to authenticate Trellix ePO in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/trello.md b/docs/integrations/builtin/credentials/trello.md
index 593f8d3dd..4f350848b 100644
--- a/docs/integrations/builtin/credentials/trello.md
+++ b/docs/integrations/builtin/credentials/trello.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Trello credentials
description: Documentation for Trello credentials. Use these credentials to authenticate Trello in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/twake.md b/docs/integrations/builtin/credentials/twake.md
index 2bb3a6500..bd9bc788c 100644
--- a/docs/integrations/builtin/credentials/twake.md
+++ b/docs/integrations/builtin/credentials/twake.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Twake credentials
description: Documentation for Twake credentials. Use these credentials to authenticate Twake in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/twilio.md b/docs/integrations/builtin/credentials/twilio.md
index e4f077205..3f49e4686 100644
--- a/docs/integrations/builtin/credentials/twilio.md
+++ b/docs/integrations/builtin/credentials/twilio.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Twilio credentials
description: Documentation for Twilio credentials. Use these credentials to authenticate Twilio in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/twist.md b/docs/integrations/builtin/credentials/twist.md
index cf526f2b2..b3bbba49a 100644
--- a/docs/integrations/builtin/credentials/twist.md
+++ b/docs/integrations/builtin/credentials/twist.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Twist credentials
description: Documentation for Twist credentials. Use these credentials to authenticate Twist in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/twitter.md b/docs/integrations/builtin/credentials/twitter.md
index 50a108794..f17f7a76e 100644
--- a/docs/integrations/builtin/credentials/twitter.md
+++ b/docs/integrations/builtin/credentials/twitter.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: X credentials
description: Documentation for X credentials. Use these credentials to authenticate X in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/typeform.md b/docs/integrations/builtin/credentials/typeform.md
index f74e25064..d478ea64c 100644
--- a/docs/integrations/builtin/credentials/typeform.md
+++ b/docs/integrations/builtin/credentials/typeform.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Typeform credentials
description: Documentation for Typeform credentials. Use these credentials to authenticate Typeform in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/unleashedsoftware.md b/docs/integrations/builtin/credentials/unleashedsoftware.md
index 96f837a00..843a45530 100644
--- a/docs/integrations/builtin/credentials/unleashedsoftware.md
+++ b/docs/integrations/builtin/credentials/unleashedsoftware.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Unleashed Software credentials
description: Documentation for Unleashed Software credentials. Use these credentials to authenticate Unleashed Software in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/uplead.md b/docs/integrations/builtin/credentials/uplead.md
index b7f1b46c5..b281a9199 100644
--- a/docs/integrations/builtin/credentials/uplead.md
+++ b/docs/integrations/builtin/credentials/uplead.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: UpLead credentials
description: Documentation for UpLead credentials. Use these credentials to authenticate UpLead in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/uproc.md b/docs/integrations/builtin/credentials/uproc.md
index 47fe0e7ad..aa0b79a35 100644
--- a/docs/integrations/builtin/credentials/uproc.md
+++ b/docs/integrations/builtin/credentials/uproc.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: uProc credentials
description: Documentation for uProc credentials. Use these credentials to authenticate uProc in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/uptimerobot.md b/docs/integrations/builtin/credentials/uptimerobot.md
index c69ebdcb4..42c8b4fa5 100644
--- a/docs/integrations/builtin/credentials/uptimerobot.md
+++ b/docs/integrations/builtin/credentials/uptimerobot.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: UptimeRobot credentials
description: Documentation for UptimeRobot credentials. Use these credentials to authenticate UptimeRobot in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/urlscanio.md b/docs/integrations/builtin/credentials/urlscanio.md
index c104a9345..a39059ea4 100644
--- a/docs/integrations/builtin/credentials/urlscanio.md
+++ b/docs/integrations/builtin/credentials/urlscanio.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: urlscan.io credentials
description: Documentation for urlscan.io credentials. Use these credentials to authenticate urlscan.io in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/venafitlsprotectcloud.md b/docs/integrations/builtin/credentials/venafitlsprotectcloud.md
index 9393be6b8..9dbba0669 100644
--- a/docs/integrations/builtin/credentials/venafitlsprotectcloud.md
+++ b/docs/integrations/builtin/credentials/venafitlsprotectcloud.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Venafi TLS Protect Cloud credentials
description: Documentation for Venafi TLS Protect Cloud credentials. Use these credentials to authenticate Venafi TLS Protect Cloud in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/venafitlsprotectdatacenter.md b/docs/integrations/builtin/credentials/venafitlsprotectdatacenter.md
index 0857d3367..16d4bc0a5 100644
--- a/docs/integrations/builtin/credentials/venafitlsprotectdatacenter.md
+++ b/docs/integrations/builtin/credentials/venafitlsprotectdatacenter.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Venafi TLS Protect Datacenter credentials
description: Documentation for Venafi TLS Protect Datacenter credentials. Use these credentials to authenticate Venafi TLS Protect Datacenter in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/vero.md b/docs/integrations/builtin/credentials/vero.md
index 2f3cf3bdd..8359dd077 100644
--- a/docs/integrations/builtin/credentials/vero.md
+++ b/docs/integrations/builtin/credentials/vero.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Vero credentials
description: Documentation for Vero credentials. Use these credentials to authenticate Vero in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/virustotal.md b/docs/integrations/builtin/credentials/virustotal.md
index 5becce866..a3077f3fe 100644
--- a/docs/integrations/builtin/credentials/virustotal.md
+++ b/docs/integrations/builtin/credentials/virustotal.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: VirusTotal credentials
description: Documentation for the VirusTotal credentials. Use these credentials to authenticate VirusTotal in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/vonage.md b/docs/integrations/builtin/credentials/vonage.md
index d07f427d3..12d6f341a 100644
--- a/docs/integrations/builtin/credentials/vonage.md
+++ b/docs/integrations/builtin/credentials/vonage.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Vonage credentials
description: Documentation for Vonage credentials. Use these credentials to authenticate Vonage in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/webflow.md b/docs/integrations/builtin/credentials/webflow.md
index 978807d2e..a6a0adb1d 100644
--- a/docs/integrations/builtin/credentials/webflow.md
+++ b/docs/integrations/builtin/credentials/webflow.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Webflow credentials
description: Documentation for Webflow credentials. Use these credentials to authenticate Webflow in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/wekan.md b/docs/integrations/builtin/credentials/wekan.md
index b3a9626ac..2b39d3caf 100644
--- a/docs/integrations/builtin/credentials/wekan.md
+++ b/docs/integrations/builtin/credentials/wekan.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: WeKan credentials
description: Documentation for WeKan credentials. Use these credentials to authenticate WeKan in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/whatsapp.md b/docs/integrations/builtin/credentials/whatsapp.md
index 7fcd82a5a..dca7dbf9f 100644
--- a/docs/integrations/builtin/credentials/whatsapp.md
+++ b/docs/integrations/builtin/credentials/whatsapp.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: WhatsApp Business credentials
description: Documentation for WhatsApp Business credentials. Use these credentials to authenticate WhatsApp Business in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/wise.md b/docs/integrations/builtin/credentials/wise.md
index c01a3d686..0f4bf9bb8 100644
--- a/docs/integrations/builtin/credentials/wise.md
+++ b/docs/integrations/builtin/credentials/wise.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Wise credentials
description: Documentation for Wise credentials. Use these credentials to authenticate Wise in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/wolframalpha.md b/docs/integrations/builtin/credentials/wolframalpha.md
index c2d1b9b1b..09f24d2a1 100644
--- a/docs/integrations/builtin/credentials/wolframalpha.md
+++ b/docs/integrations/builtin/credentials/wolframalpha.md
@@ -1,6 +1,8 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Wolfram|Alpha credentials
description: Documentation for the Wolfram|Alpha credentials. Use these credentials to authenticate Wolfram|Alpha in n8n, a workflow automation platform.
+contentType: integration
---
# Wolfram|Alpha credentials
diff --git a/docs/integrations/builtin/credentials/woocommerce.md b/docs/integrations/builtin/credentials/woocommerce.md
index 1c7308555..546d7b166 100644
--- a/docs/integrations/builtin/credentials/woocommerce.md
+++ b/docs/integrations/builtin/credentials/woocommerce.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: WooCommerce credentials
description: Documentation for WooCommerce credentials. Use these credentials to authenticate WooCommerce in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/wordpress.md b/docs/integrations/builtin/credentials/wordpress.md
index 2ee6fe1a9..b8bf06f54 100644
--- a/docs/integrations/builtin/credentials/wordpress.md
+++ b/docs/integrations/builtin/credentials/wordpress.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: WordPress credentials
description: Documentation for WordPress credentials. Use these credentials to authenticate WordPress in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/workable.md b/docs/integrations/builtin/credentials/workable.md
index c1671520b..9fd287d4d 100644
--- a/docs/integrations/builtin/credentials/workable.md
+++ b/docs/integrations/builtin/credentials/workable.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Workable credentials
description: Documentation for Workable credentials. Use these credentials to authenticate Workable in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/wufoo.md b/docs/integrations/builtin/credentials/wufoo.md
index 2b6c46909..324cbba69 100644
--- a/docs/integrations/builtin/credentials/wufoo.md
+++ b/docs/integrations/builtin/credentials/wufoo.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Wufoo credentials
description: Documentation for Wufoo credentials. Use these credentials to authenticate Wufoo in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/xata.md b/docs/integrations/builtin/credentials/xata.md
index e52b6e10f..253acdd0b 100644
--- a/docs/integrations/builtin/credentials/xata.md
+++ b/docs/integrations/builtin/credentials/xata.md
@@ -1,6 +1,8 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Xata credentials
description: Documentation for the Xata credentials. Use these credentials to authenticate Xata in n8n, a workflow automation platform.
+contentType: integration
---
# Xata credentials
diff --git a/docs/integrations/builtin/credentials/xero.md b/docs/integrations/builtin/credentials/xero.md
index 4605acaa1..4d8735008 100644
--- a/docs/integrations/builtin/credentials/xero.md
+++ b/docs/integrations/builtin/credentials/xero.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Xero credentials
description: Documentation for Xero credentials. Use these credentials to authenticate Xero in n8n, a workflow automation platform.
contentType: integration
@@ -27,13 +28,20 @@ Refer to [Zero's API documentation](https://developer.xero.com/documentation/api
To configure this credential, you'll need:
- A **Client ID**: Generated when you create a new app for a custom connection.
-- A **Client Secret**: Generated when you create a new for a custom connection.
+- A **Client Secret**: Generated when you create a new app for a custom connection.
To generate your Client ID and Client Secret, [create an OAuth2 custom connection app](https://developer.xero.com/documentation/guides/oauth2/custom-connections/){:target=_blank .external-link} in your Xero developer portal [**My Apps**](https://developer.xero.com/app/manage){:target=_blank .external-link}.
Use these settings for your app:
+/// note | Xero App Name
+
+Please be advised that Xero does not support app instances within the Xero Developer Centre that contain _"n8n"_ in their name.
+
+///
+
- Select **Web app** as the **Integration Type**.
+- As the **Company or Application URL** enter the URL of your n8n server or reverse proxy address. For our cloud users this would be e.g. `https://your-username.app.n8n.cloud/`
- Copy the **OAuth Redirect URL** from n8n and add it as an **OAuth 2.0 redirect URI** in your app.
- Select appropriate **scopes** for your app. Refer to [OAuth2 Scopes](https://developer.xero.com/documentation/guides/oauth2/scopes/){:target=_blank .external-link} for more information.
- To use all functionality in the [Xero](/integrations/builtin/app-nodes/n8n-nodes-base.xero/) node, add the `accounting.contacts` and `accounting.transactions` scopes.
diff --git a/docs/integrations/builtin/credentials/yourls.md b/docs/integrations/builtin/credentials/yourls.md
index 8be6a447f..d8fcaa937 100644
--- a/docs/integrations/builtin/credentials/yourls.md
+++ b/docs/integrations/builtin/credentials/yourls.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Yourls credentials
description: Documentation for Yourls credentials. Use these credentials to authenticate Yourls in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/zammad.md b/docs/integrations/builtin/credentials/zammad.md
index f09ad59f2..64d5d0ea8 100644
--- a/docs/integrations/builtin/credentials/zammad.md
+++ b/docs/integrations/builtin/credentials/zammad.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Zammad credentials
description: Documentation for Zammad credentials. Use these credentials to authenticate Zammad in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/zendesk.md b/docs/integrations/builtin/credentials/zendesk.md
index 6b2dc5e78..587af8446 100644
--- a/docs/integrations/builtin/credentials/zendesk.md
+++ b/docs/integrations/builtin/credentials/zendesk.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Zendesk credentials
description: Documentation for Zendesk credentials. Use these credentials to authenticate Zendesk in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/zep.md b/docs/integrations/builtin/credentials/zep.md
index 643c27b96..3bf5c1fd1 100644
--- a/docs/integrations/builtin/credentials/zep.md
+++ b/docs/integrations/builtin/credentials/zep.md
@@ -1,6 +1,8 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Zep credentials
description: Documentation for the Zep credentials. Use these credentials to authenticate Zep in n8n, a workflow automation platform.
+contentType: integration
---
# Zep credentials
diff --git a/docs/integrations/builtin/credentials/zoho.md b/docs/integrations/builtin/credentials/zoho.md
index 987a3bceb..1c845242d 100644
--- a/docs/integrations/builtin/credentials/zoho.md
+++ b/docs/integrations/builtin/credentials/zoho.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Zoho credentials
description: Documentation for Zoho credentials. Use these credentials to authenticate Zoho in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/zoom.md b/docs/integrations/builtin/credentials/zoom.md
index 74133cf4c..f3769eed0 100644
--- a/docs/integrations/builtin/credentials/zoom.md
+++ b/docs/integrations/builtin/credentials/zoom.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Zoom credentials
description: Documentation for Zoom credentials. Use these credentials to authenticate Zoom in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/credentials/zscalerzia.md b/docs/integrations/builtin/credentials/zscalerzia.md
index bea1ab10e..c39d84df9 100644
--- a/docs/integrations/builtin/credentials/zscalerzia.md
+++ b/docs/integrations/builtin/credentials/zscalerzia.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Zscaler ZIA credentials
description: Documentation for the Zscaler ZIA credentials. Use these credentials to authenticate Zscaler ZIA in n8n, a workflow automation platform.
---
diff --git a/docs/integrations/builtin/credentials/zulip.md b/docs/integrations/builtin/credentials/zulip.md
index 611a6664c..9c5e272c9 100644
--- a/docs/integrations/builtin/credentials/zulip.md
+++ b/docs/integrations/builtin/credentials/zulip.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Zulip credentials
description: Documentation for Zulip credentials. Use these credentials to authenticate Zulip in n8n, a workflow automation platform.
contentType: integration
diff --git a/docs/integrations/builtin/node-types.md b/docs/integrations/builtin/node-types.md
index 4cf6c2ae8..575344ea3 100644
--- a/docs/integrations/builtin/node-types.md
+++ b/docs/integrations/builtin/node-types.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/integrations/builtin/rate-limits.md b/docs/integrations/builtin/rate-limits.md
index a38e3df0c..5da6d79c2 100644
--- a/docs/integrations/builtin/rate-limits.md
+++ b/docs/integrations/builtin/rate-limits.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Handling API rate limits
pageType: howto
description: How to handle API rate limits when using n8n integrations.
diff --git a/docs/integrations/builtin/trigger-nodes/index.md b/docs/integrations/builtin/trigger-nodes/index.md
index 5dd130a29..188a775f6 100644
--- a/docs/integrations/builtin/trigger-nodes/index.md
+++ b/docs/integrations/builtin/trigger-nodes/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.activecampaigntrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.activecampaigntrigger.md
index 2ba65e10e..13e18cc59 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.activecampaigntrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.activecampaigntrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: ActiveCampaign trigger
description: Documentation for the ActiveCampaign trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.acuityschedulingtrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.acuityschedulingtrigger.md
index 779b041e8..f52fbd3c1 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.acuityschedulingtrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.acuityschedulingtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Acuity Scheduling trigger
description: Documentation for the Acuity Scheduling trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.affinitytrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.affinitytrigger.md
index 850d77422..e89ad719f 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.affinitytrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.affinitytrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Affinity trigger
description: Documentation for the Affinity trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.airtabletrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.airtabletrigger.md
index 4a1384044..d6f590508 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.airtabletrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.airtabletrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Airtable trigger
description: Documentation for the Airtable trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.amqptrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.amqptrigger.md
index bd66b2463..cfa35ecb0 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.amqptrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.amqptrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AMQP trigger
description: Documentation for the AMQP trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.asanatrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.asanatrigger.md
index e02292b13..bbec91388 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.asanatrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.asanatrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Asana trigger
description: Documentation for the Asana trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.autopilottrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.autopilottrigger.md
index 8ed56eebe..56da5cca5 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.autopilottrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.autopilottrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Autopilot trigger
description: Documentation for the Autopilot trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.awssnstrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.awssnstrigger.md
index b36c3d25a..cc09d3284 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.awssnstrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.awssnstrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: AWS SNS trigger
description: Documentation for the AWS SNS trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.bitbuckettrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.bitbuckettrigger.md
index df16bd06c..7bfe2efb2 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.bitbuckettrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.bitbuckettrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Bitbucket trigger
description: Documentation for the Bitbucket trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.boxtrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.boxtrigger.md
index 6c09de885..06e098ce0 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.boxtrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.boxtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Box trigger
description: Documentation for the Box trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.brevotrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.brevotrigger.md
index 98715abc1..8d075762d 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.brevotrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.brevotrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Brevo trigger
description: Documentation for the Brevo trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.calendlytrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.calendlytrigger.md
index ef11bf774..c4cd041e2 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.calendlytrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.calendlytrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Calendly trigger
description: Documentation for the Calendly trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.caltrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.caltrigger.md
index 6d3b2f621..1b1f8d895 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.caltrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.caltrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Cal trigger
description: Documentation for the Cal trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.chargebeetrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.chargebeetrigger.md
index 1b13cbf8d..bc171a466 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.chargebeetrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.chargebeetrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Chargebee trigger
description: Documentation for the Chargebee trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.ciscowebextrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.ciscowebextrigger.md
index 0880e8f25..3526f5710 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.ciscowebextrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.ciscowebextrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Webex by Cisco trigger
description: Documentation for the Webex by Cisco trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.clickuptrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.clickuptrigger.md
index 14eecdf4f..d44c0203c 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.clickuptrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.clickuptrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: ClickUp trigger
description: Documentation for the ClickUp trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.clockifytrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.clockifytrigger.md
index 85115f681..a5dc467c4 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.clockifytrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.clockifytrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Clockify trigger
description: Documentation for the Clockify trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.convertkittrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.convertkittrigger.md
index 031b5a5f3..b5426056e 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.convertkittrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.convertkittrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: ConvertKit trigger
description: Documentation for the ConvertKit trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.coppertrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.coppertrigger.md
index 4aa6a6c36..453209c04 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.coppertrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.coppertrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Copper trigger
description: Documentation for the Copper trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.crowddevtrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.crowddevtrigger.md
index 139737083..9c67da6d9 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.crowddevtrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.crowddevtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: crowd.dev trigger
description: Documentation for the crowd.dev trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.customeriotrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.customeriotrigger.md
index cff4eb103..1b718da39 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.customeriotrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.customeriotrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Customer.io trigger
description: Documentation for the Customer.io trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.emeliatrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.emeliatrigger.md
index 0dbd1d75d..4f7531538 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.emeliatrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.emeliatrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Emelia trigger
description: Documentation for the Emelia trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.eventbritetrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.eventbritetrigger.md
index 59ea35bc3..cf1b180f9 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.eventbritetrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.eventbritetrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Eventbrite trigger
description: Documentation for the Eventbrite trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.facebookleadadstrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.facebookleadadstrigger.md
index 1fae29802..3594f6063 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.facebookleadadstrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.facebookleadadstrigger.md
@@ -1,6 +1,8 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Facebook Lead Ads trigger
description: Documentation for the Facebook Lead Ads trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
+contentType: integration
---
# Facebook Lead Ads trigger
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.facebooktrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.facebooktrigger.md
index a48526546..9c44ecd7c 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.facebooktrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.facebooktrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Facebook trigger
description: Documentation for the Facebook trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.figmatrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.figmatrigger.md
index 24ad33d7e..a1b305d49 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.figmatrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.figmatrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Figma trigger (Beta) node
description: Documentation for the Figma trigger (Beta) node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.flowtrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.flowtrigger.md
index b9132babf..1c9826772 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.flowtrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.flowtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Flow trigger
description: Documentation for the Flow trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.formiotrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.formiotrigger.md
index df3837743..e2bafd4c5 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.formiotrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.formiotrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Form.io trigger
description: Documentation for the Form.io trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.formstacktrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.formstacktrigger.md
index f38366049..35426d8dd 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.formstacktrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.formstacktrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Formstack trigger
description: Documentation for the Formstack trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.getresponsetrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.getresponsetrigger.md
index 9204d6692..4852986e3 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.getresponsetrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.getresponsetrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: GetResponse trigger
description: Documentation for the GetResponse trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.githubtrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.githubtrigger.md
index 388f749e3..30280cd26 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.githubtrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.githubtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: GitHub trigger
description: Documentation for the GitHub trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.gitlabtrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.gitlabtrigger.md
index c5dfb3c8e..35a60c63b 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.gitlabtrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.gitlabtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: GitLab trigger
description: Documentation for the GitLab trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.gmailtrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.gmailtrigger.md
index 68332c082..e4f6d80c7 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.gmailtrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.gmailtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Gmail trigger
description: Documentation for the Gmail trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.googlecalendartrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.googlecalendartrigger.md
index 96b7ac18a..ba66e72a1 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.googlecalendartrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.googlecalendartrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Calendar trigger
description: Documentation for the Google Calendar trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.googledrivetrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.googledrivetrigger.md
index 82e0ab373..e7003dfaf 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.googledrivetrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.googledrivetrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Drive trigger
description: Documentation for the Google Drive trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.googlesheetstrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.googlesheetstrigger.md
index 5342daab1..ab61e0150 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.googlesheetstrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.googlesheetstrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Google Sheets trigger
description: Documentation for the Google Sheets trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.gumroadtrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.gumroadtrigger.md
index bc670e482..6e32b8d0c 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.gumroadtrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.gumroadtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Gumroad trigger
description: Documentation for the Gumroad trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.helpscouttrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.helpscouttrigger.md
index ae6873cb0..59af8aa9e 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.helpscouttrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.helpscouttrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Help Scout trigger
description: Documentation for the Help Scout trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.hubspottrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.hubspottrigger.md
index 93c11e1cb..edea2c734 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.hubspottrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.hubspottrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: HubSpot trigger
description: Documentation for the HubSpot trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.invoiceninjatrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.invoiceninjatrigger.md
index 98e3786c6..71ff89a49 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.invoiceninjatrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.invoiceninjatrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Invoice Ninja trigger
description: Documentation for the Invoice Ninja trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.jiratrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.jiratrigger.md
index 038220ed6..c3244f747 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.jiratrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.jiratrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Jira trigger
description: Documentation for the Jira trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.jotformtrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.jotformtrigger.md
index 96a5c1193..81efb3839 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.jotformtrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.jotformtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: JotForm trigger
description: Documentation for the JotForm trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.kafkatrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.kafkatrigger.md
index e739605cc..ecc675f77 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.kafkatrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.kafkatrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Kafka trigger
description: Documentation for the Kafka trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.keaptrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.keaptrigger.md
index 0be38307b..c858ea2dd 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.keaptrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.keaptrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Keap trigger
description: Documentation for the Keap trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.kobotoolboxtrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.kobotoolboxtrigger.md
index e7597a119..2fc10cc10 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.kobotoolboxtrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.kobotoolboxtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: KoboToolbox trigger
description: Documentation for the KoboToolbox trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.lemlisttrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.lemlisttrigger.md
index 628483385..4e5972ef9 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.lemlisttrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.lemlisttrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Lemlist trigger
description: Documentation for the Lemlist trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.lineartrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.lineartrigger.md
index 9c49c0385..b88713d29 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.lineartrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.lineartrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Linear trigger
description: Documentation for the Linear trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.lonescaletrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.lonescaletrigger.md
index 4a798150c..3a412e338 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.lonescaletrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.lonescaletrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: LoneScale trigger
description: Documentation for the LoneScale trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mailchimptrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mailchimptrigger.md
index 64d915e74..d735488cf 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mailchimptrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mailchimptrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mailchimp trigger
description: Documentation for the Mailchimp trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mailerlitetrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mailerlitetrigger.md
index 3d80b7a5c..e49c4c448 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mailerlitetrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mailerlitetrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MailerLite trigger
description: Documentation for the MailerLite trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mailjettrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mailjettrigger.md
index ff39b9425..24d4c7774 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mailjettrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mailjettrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mailjet trigger
description: Documentation for the Mailjet trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mautictrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mautictrigger.md
index 395aa9193..a32aab816 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mautictrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mautictrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mautic trigger
description: Documentation for the Mautic trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.microsoftonedrivetrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.microsoftonedrivetrigger.md
index d46d70a4a..1a5992b4a 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.microsoftonedrivetrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.microsoftonedrivetrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Microsoft OneDrive trigger
description: Documentation for the Microsoft OneDrive trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.microsoftoutlooktrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.microsoftoutlooktrigger.md
index a651e870d..27e7f08e8 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.microsoftoutlooktrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.microsoftoutlooktrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Microsoft Outlook trigger
description: Documentation for the Microsoft Outlook trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mqtttrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mqtttrigger.md
index 4e5967331..04fface9e 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mqtttrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.mqtttrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: MQTT trigger
description: Documentation for the MQTT trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.netlifytrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.netlifytrigger.md
index 7cb73d05a..0d5ee54cf 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.netlifytrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.netlifytrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Netlify trigger
description: Documentation for the Netlify trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.notiontrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.notiontrigger.md
index 8b3c2e299..29bba582c 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.notiontrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.notiontrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Notion trigger
description: Documentation for the Notion trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.onfleettrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.onfleettrigger.md
index caa863ebd..91cf9c4bf 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.onfleettrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.onfleettrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Onfleet trigger
description: Documentation for the Onfleet trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.paypaltrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.paypaltrigger.md
index 076615406..93c451be4 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.paypaltrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.paypaltrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: PayPal trigger
description: Documentation for the PayPal trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.pipedrivetrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.pipedrivetrigger.md
index bec81a8be..bf0d3f1d7 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.pipedrivetrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.pipedrivetrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Pipedrive trigger
description: Documentation for the Pipedrive trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.postgrestrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.postgrestrigger.md
index 14ae0bcc7..161aba882 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.postgrestrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.postgrestrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Postgres trigger
description: Documentation for the Postgres trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.postmarktrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.postmarktrigger.md
index 6900e8537..49e25d8d6 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.postmarktrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.postmarktrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Postmark trigger
description: Documentation for the Postmark trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.pushcuttrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.pushcuttrigger.md
index 4b5ddcb43..b255ff4c7 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.pushcuttrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.pushcuttrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Pushcut trigger
description: Documentation for the Pushcut trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.rabbitmqtrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.rabbitmqtrigger.md
index 02c68ad40..e0c89fe3c 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.rabbitmqtrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.rabbitmqtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: RabbitMQ trigger
description: Documentation for the RabbitMQ trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.redistrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.redistrigger.md
index ce67e1325..71dfa32d8 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.redistrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.redistrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Redis trigger
description: Documentation for the Redis trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.salesforcetrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.salesforcetrigger.md
index df38e6429..e919e1aac 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.salesforcetrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.salesforcetrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Salesforce trigger
description: Documentation for the Salesforce trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
---
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.seatabletrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.seatabletrigger.md
index 31695604e..6a1bd84cb 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.seatabletrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.seatabletrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SeaTable trigger
description: Documentation for the SeaTable trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.shopifytrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.shopifytrigger.md
index aa943776d..629745921 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.shopifytrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.shopifytrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Shopify trigger
description: Documentation for the Shopify trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.slacktrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.slacktrigger.md
index 8a89eb756..d8df55fcd 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.slacktrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.slacktrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Slack trigger
description: Documentation for the Slack trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.stravatrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.stravatrigger.md
index e917ffb40..51ef7f776 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.stravatrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.stravatrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Strava trigger
description: Documentation for the Strava trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.stripetrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.stripetrigger.md
index 1bf9e4e03..95a17c91c 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.stripetrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.stripetrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Stripe trigger
description: Documentation for the Stripe trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.surveymonkeytrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.surveymonkeytrigger.md
index 75fe21ddd..0557b91dd 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.surveymonkeytrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.surveymonkeytrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: SurveyMonkey trigger
description: Documentation for the SurveyMonkey trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.taigatrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.taigatrigger.md
index 60d020bfb..8843a81f8 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.taigatrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.taigatrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Taiga trigger
description: Documentation for the Taiga trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger.md
index 03caca560..106d75c0a 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Telegram trigger
description: Documentation for the Telegram trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.thehive5trigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.thehive5trigger.md
index 03ff285cb..4dabf5824 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.thehive5trigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.thehive5trigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: TheHive 5 trigger
description: Documentation for the TheHive 5 trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.thehivetrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.thehivetrigger.md
index 41bfc0e7a..801a65f1d 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.thehivetrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.thehivetrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: TheHive trigger
description: Documentation for the TheHive trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.toggltrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.toggltrigger.md
index 3dbd9f592..33ab6ea66 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.toggltrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.toggltrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Toggl trigger
description: Documentation for the Toggl trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.trellotrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.trellotrigger.md
index 92785fff5..10a1501a3 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.trellotrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.trellotrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Trello trigger
description: Documentation for the Trello trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.twiliotrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.twiliotrigger.md
index 3c2b67956..126acb5d4 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.twiliotrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.twiliotrigger.md
@@ -1,6 +1,8 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Twilio trigger
description: Documentation for the Twilio trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
+contentType: integration
---
# Twilio trigger
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.typeformtrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.typeformtrigger.md
index 262ffd462..f5d179b58 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.typeformtrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.typeformtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Typeform trigger
description: Documentation for the Typeform trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.venafitlsprotectcloudtrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.venafitlsprotectcloudtrigger.md
index a5d451404..fa6ed2450 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.venafitlsprotectcloudtrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.venafitlsprotectcloudtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Venafi TLS Protect Cloud trigger
description: Documentation for the Venafi TLS Protect Cloud trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.webflowtrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.webflowtrigger.md
index 10afeb28b..9b19e3342 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.webflowtrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.webflowtrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Webflow trigger
description: Documentation for the Webflow trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.whatsapptrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.whatsapptrigger.md
index fbafe5fc0..09a3bfa54 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.whatsapptrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.whatsapptrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: WhatsApp trigger
description: Documentation for the WhatsApp trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.wisetrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.wisetrigger.md
index 5af101603..1fe04e9d3 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.wisetrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.wisetrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Wise trigger
description: Documentation for the Wise trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.woocommercetrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.woocommercetrigger.md
index a7963ec01..9415a46f4 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.woocommercetrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.woocommercetrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: WooCommerce trigger
description: Documentation for the WooCommerce trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.workabletrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.workabletrigger.md
index 44954b47d..776f963a5 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.workabletrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.workabletrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Workable trigger
description: Documentation for the Workable trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.wufootrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.wufootrigger.md
index 967d0dac0..897c68ba6 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.wufootrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.wufootrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Wufoo trigger
description: Documentation for the Wufoo trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.zendesktrigger.md b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.zendesktrigger.md
index 5b82aa4ec..3c98e30d2 100644
--- a/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.zendesktrigger.md
+++ b/docs/integrations/builtin/trigger-nodes/n8n-nodes-base.zendesktrigger.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Zendesk trigger
description: Documentation for the Zendesk trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
diff --git a/docs/integrations/community-nodes/blocklist.md b/docs/integrations/community-nodes/blocklist.md
index 25f222d16..9f60acfdd 100644
--- a/docs/integrations/community-nodes/blocklist.md
+++ b/docs/integrations/community-nodes/blocklist.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
---
diff --git a/docs/integrations/community-nodes/build-community-nodes.md b/docs/integrations/community-nodes/build-community-nodes.md
index abf2e815b..b26a62299 100644
--- a/docs/integrations/community-nodes/build-community-nodes.md
+++ b/docs/integrations/community-nodes/build-community-nodes.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/integrations/community-nodes/installation/gui-install.md b/docs/integrations/community-nodes/installation/gui-install.md
index ae55b3b3d..257ffaf20 100644
--- a/docs/integrations/community-nodes/installation/gui-install.md
+++ b/docs/integrations/community-nodes/installation/gui-install.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/integrations/community-nodes/installation/index.md b/docs/integrations/community-nodes/installation/index.md
index 38413ca33..1d5b0603e 100644
--- a/docs/integrations/community-nodes/installation/index.md
+++ b/docs/integrations/community-nodes/installation/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/integrations/community-nodes/installation/manual-install.md b/docs/integrations/community-nodes/installation/manual-install.md
index 84bd888e2..f9bde38e2 100644
--- a/docs/integrations/community-nodes/installation/manual-install.md
+++ b/docs/integrations/community-nodes/installation/manual-install.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/integrations/community-nodes/risks.md b/docs/integrations/community-nodes/risks.md
index cf1aa7713..9125168be 100644
--- a/docs/integrations/community-nodes/risks.md
+++ b/docs/integrations/community-nodes/risks.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
---
diff --git a/docs/integrations/community-nodes/troubleshooting.md b/docs/integrations/community-nodes/troubleshooting.md
index 03949a87f..75b8a3488 100644
--- a/docs/integrations/community-nodes/troubleshooting.md
+++ b/docs/integrations/community-nodes/troubleshooting.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/integrations/community-nodes/usage.md b/docs/integrations/community-nodes/usage.md
index 49c998523..a750e7595 100644
--- a/docs/integrations/community-nodes/usage.md
+++ b/docs/integrations/community-nodes/usage.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/integrations/creating-nodes/build/declarative-style-node.md b/docs/integrations/creating-nodes/build/declarative-style-node.md
index 23fac1171..803c46321 100644
--- a/docs/integrations/creating-nodes/build/declarative-style-node.md
+++ b/docs/integrations/creating-nodes/build/declarative-style-node.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/integrations/creating-nodes/build/index.md b/docs/integrations/creating-nodes/build/index.md
index 498f7e28a..ebbc81c37 100644
--- a/docs/integrations/creating-nodes/build/index.md
+++ b/docs/integrations/creating-nodes/build/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/integrations/creating-nodes/build/node-development-environment.md b/docs/integrations/creating-nodes/build/node-development-environment.md
index 2a891e77f..10a26ebf0 100644
--- a/docs/integrations/creating-nodes/build/node-development-environment.md
+++ b/docs/integrations/creating-nodes/build/node-development-environment.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/integrations/creating-nodes/build/programmatic-style-node.md b/docs/integrations/creating-nodes/build/programmatic-style-node.md
index 097835438..6756f718b 100644
--- a/docs/integrations/creating-nodes/build/programmatic-style-node.md
+++ b/docs/integrations/creating-nodes/build/programmatic-style-node.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: tutorial
---
diff --git a/docs/integrations/creating-nodes/build/reference/code-standards.md b/docs/integrations/creating-nodes/build/reference/code-standards.md
index 1c6668d43..c9737dc10 100644
--- a/docs/integrations/creating-nodes/build/reference/code-standards.md
+++ b/docs/integrations/creating-nodes/build/reference/code-standards.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: reference
---
diff --git a/docs/integrations/creating-nodes/build/reference/credentials-files.md b/docs/integrations/creating-nodes/build/reference/credentials-files.md
index 73959b6d9..81d140583 100644
--- a/docs/integrations/creating-nodes/build/reference/credentials-files.md
+++ b/docs/integrations/creating-nodes/build/reference/credentials-files.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: reference
---
diff --git a/docs/integrations/creating-nodes/build/reference/http-helpers.md b/docs/integrations/creating-nodes/build/reference/http-helpers.md
index a19729a54..1aa84fbcc 100644
--- a/docs/integrations/creating-nodes/build/reference/http-helpers.md
+++ b/docs/integrations/creating-nodes/build/reference/http-helpers.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: reference
---
diff --git a/docs/integrations/creating-nodes/build/reference/index.md b/docs/integrations/creating-nodes/build/reference/index.md
index 61559a779..5d693ec8a 100644
--- a/docs/integrations/creating-nodes/build/reference/index.md
+++ b/docs/integrations/creating-nodes/build/reference/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/integrations/creating-nodes/build/reference/node-base-files/declarative-style-parameters.md b/docs/integrations/creating-nodes/build/reference/node-base-files/declarative-style-parameters.md
index c2fde4f6d..ee6a7db86 100644
--- a/docs/integrations/creating-nodes/build/reference/node-base-files/declarative-style-parameters.md
+++ b/docs/integrations/creating-nodes/build/reference/node-base-files/declarative-style-parameters.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Declarative-style parameters
description: A reference document listing the declarative-style parameters of the node base file.
contentType: reference
diff --git a/docs/integrations/creating-nodes/build/reference/node-base-files/index.md b/docs/integrations/creating-nodes/build/reference/node-base-files/index.md
index da195e75e..9040d1ead 100644
--- a/docs/integrations/creating-nodes/build/reference/node-base-files/index.md
+++ b/docs/integrations/creating-nodes/build/reference/node-base-files/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/integrations/creating-nodes/build/reference/node-base-files/programmatic-style-execute-method.md b/docs/integrations/creating-nodes/build/reference/node-base-files/programmatic-style-execute-method.md
index 8aab50464..183dfcb4a 100644
--- a/docs/integrations/creating-nodes/build/reference/node-base-files/programmatic-style-execute-method.md
+++ b/docs/integrations/creating-nodes/build/reference/node-base-files/programmatic-style-execute-method.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Programmatic-style execute() method
description: A reference document for the programmatic-style execute() method of the node base file.
contentType: reference
diff --git a/docs/integrations/creating-nodes/build/reference/node-base-files/programmatic-style-parameters.md b/docs/integrations/creating-nodes/build/reference/node-base-files/programmatic-style-parameters.md
index 8c685cc3d..316b9c024 100644
--- a/docs/integrations/creating-nodes/build/reference/node-base-files/programmatic-style-parameters.md
+++ b/docs/integrations/creating-nodes/build/reference/node-base-files/programmatic-style-parameters.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Programmatic-style parameters
description: A reference document listing the programmatic-style parameters of the node base file.
contentType: reference
diff --git a/docs/integrations/creating-nodes/build/reference/node-base-files/standard-parameters.md b/docs/integrations/creating-nodes/build/reference/node-base-files/standard-parameters.md
index 79fc59895..0bea1b670 100644
--- a/docs/integrations/creating-nodes/build/reference/node-base-files/standard-parameters.md
+++ b/docs/integrations/creating-nodes/build/reference/node-base-files/standard-parameters.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Standard parameters
description: A reference document listing the standard parameters of the node base file.
contentType: reference
diff --git a/docs/integrations/creating-nodes/build/reference/node-base-files/structure.md b/docs/integrations/creating-nodes/build/reference/node-base-files/structure.md
index 6e8cbdfe8..1cab3a759 100644
--- a/docs/integrations/creating-nodes/build/reference/node-base-files/structure.md
+++ b/docs/integrations/creating-nodes/build/reference/node-base-files/structure.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Structure of the node base file
description: A reference document detailing the basic structure of the node base file.
contentType: reference
diff --git a/docs/integrations/creating-nodes/build/reference/node-codex-files.md b/docs/integrations/creating-nodes/build/reference/node-codex-files.md
index bd5565219..468ad570a 100644
--- a/docs/integrations/creating-nodes/build/reference/node-codex-files.md
+++ b/docs/integrations/creating-nodes/build/reference/node-codex-files.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: reference
---
diff --git a/docs/integrations/creating-nodes/build/reference/node-file-structure.md b/docs/integrations/creating-nodes/build/reference/node-file-structure.md
index e28750ce4..1cc43c80a 100644
--- a/docs/integrations/creating-nodes/build/reference/node-file-structure.md
+++ b/docs/integrations/creating-nodes/build/reference/node-file-structure.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
---
diff --git a/docs/integrations/creating-nodes/build/reference/node-versioning.md b/docs/integrations/creating-nodes/build/reference/node-versioning.md
index 1326e1478..027fb0366 100644
--- a/docs/integrations/creating-nodes/build/reference/node-versioning.md
+++ b/docs/integrations/creating-nodes/build/reference/node-versioning.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/integrations/creating-nodes/build/reference/paired-items.md b/docs/integrations/creating-nodes/build/reference/paired-items.md
index 388aa2302..7c1b8367c 100644
--- a/docs/integrations/creating-nodes/build/reference/paired-items.md
+++ b/docs/integrations/creating-nodes/build/reference/paired-items.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/integrations/creating-nodes/build/reference/ui-elements.md b/docs/integrations/creating-nodes/build/reference/ui-elements.md
index 2aae4ad59..8f432ad9a 100644
--- a/docs/integrations/creating-nodes/build/reference/ui-elements.md
+++ b/docs/integrations/creating-nodes/build/reference/ui-elements.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: reference
---
diff --git a/docs/integrations/creating-nodes/deploy/index.md b/docs/integrations/creating-nodes/deploy/index.md
index f2b669e8b..e0d63045a 100644
--- a/docs/integrations/creating-nodes/deploy/index.md
+++ b/docs/integrations/creating-nodes/deploy/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/integrations/creating-nodes/deploy/install-private-nodes.md b/docs/integrations/creating-nodes/deploy/install-private-nodes.md
index 64e264dad..20e9344a3 100644
--- a/docs/integrations/creating-nodes/deploy/install-private-nodes.md
+++ b/docs/integrations/creating-nodes/deploy/install-private-nodes.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/integrations/creating-nodes/deploy/submit-community-nodes.md b/docs/integrations/creating-nodes/deploy/submit-community-nodes.md
index 26403142e..3e895f69b 100644
--- a/docs/integrations/creating-nodes/deploy/submit-community-nodes.md
+++ b/docs/integrations/creating-nodes/deploy/submit-community-nodes.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/integrations/creating-nodes/overview.md b/docs/integrations/creating-nodes/overview.md
index d6b5d8e9a..85d309ab6 100644
--- a/docs/integrations/creating-nodes/overview.md
+++ b/docs/integrations/creating-nodes/overview.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/integrations/creating-nodes/plan/choose-node-method.md b/docs/integrations/creating-nodes/plan/choose-node-method.md
index 6af4dc296..f03700355 100644
--- a/docs/integrations/creating-nodes/plan/choose-node-method.md
+++ b/docs/integrations/creating-nodes/plan/choose-node-method.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
---
diff --git a/docs/integrations/creating-nodes/plan/index.md b/docs/integrations/creating-nodes/plan/index.md
index 6e7f830d8..de7490128 100644
--- a/docs/integrations/creating-nodes/plan/index.md
+++ b/docs/integrations/creating-nodes/plan/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/integrations/creating-nodes/plan/node-types.md b/docs/integrations/creating-nodes/plan/node-types.md
index 4566cb935..8ce2642c8 100644
--- a/docs/integrations/creating-nodes/plan/node-types.md
+++ b/docs/integrations/creating-nodes/plan/node-types.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
---
diff --git a/docs/integrations/creating-nodes/plan/node-ui-design.md b/docs/integrations/creating-nodes/plan/node-ui-design.md
index 91aca554f..58006d10e 100644
--- a/docs/integrations/creating-nodes/plan/node-ui-design.md
+++ b/docs/integrations/creating-nodes/plan/node-ui-design.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: reference
---
diff --git a/docs/integrations/creating-nodes/test/index.md b/docs/integrations/creating-nodes/test/index.md
index 5e310125a..50df71f3d 100644
--- a/docs/integrations/creating-nodes/test/index.md
+++ b/docs/integrations/creating-nodes/test/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/integrations/creating-nodes/test/node-linter.md b/docs/integrations/creating-nodes/test/node-linter.md
index aec4d96b8..0ab3b0f5d 100644
--- a/docs/integrations/creating-nodes/test/node-linter.md
+++ b/docs/integrations/creating-nodes/test/node-linter.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/integrations/creating-nodes/test/run-node-locally.md b/docs/integrations/creating-nodes/test/run-node-locally.md
index c4d233806..3988558b9 100644
--- a/docs/integrations/creating-nodes/test/run-node-locally.md
+++ b/docs/integrations/creating-nodes/test/run-node-locally.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/integrations/creating-nodes/test/troubleshooting-node-development.md b/docs/integrations/creating-nodes/test/troubleshooting-node-development.md
index 495aa207d..6e6ef4904 100644
--- a/docs/integrations/creating-nodes/test/troubleshooting-node-development.md
+++ b/docs/integrations/creating-nodes/test/troubleshooting-node-development.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/integrations/custom-operations.md b/docs/integrations/custom-operations.md
index f75613444..753d853b8 100644
--- a/docs/integrations/custom-operations.md
+++ b/docs/integrations/custom-operations.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: explanation
---
diff --git a/docs/integrations/index.md b/docs/integrations/index.md
index 39f2d8f1e..a64c90880 100644
--- a/docs/integrations/index.md
+++ b/docs/integrations/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/keyboard-shortcuts.md b/docs/keyboard-shortcuts.md
index 0e54c67cc..d55d33d7b 100644
--- a/docs/keyboard-shortcuts.md
+++ b/docs/keyboard-shortcuts.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
tags:
- Keyboard
- Move canvas
diff --git a/docs/learning-path.md b/docs/learning-path.md
index 4ae690995..b0e81cbb2 100644
--- a/docs/learning-path.md
+++ b/docs/learning-path.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: A suggested learning path to get started with n8n through tutorials, courses, and step-by-step guides.
contentType: overview
---
diff --git a/docs/log-streaming.md b/docs/log-streaming.md
index e5191995f..eb5d69ffc 100644
--- a/docs/log-streaming.md
+++ b/docs/log-streaming.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Stream events from n8n to your logging tools.
contentType: howto
---
diff --git a/docs/manage-cloud/cloud-admin-dashboard.md b/docs/manage-cloud/cloud-admin-dashboard.md
index 84bb585ef..b7b672c1c 100644
--- a/docs/manage-cloud/cloud-admin-dashboard.md
+++ b/docs/manage-cloud/cloud-admin-dashboard.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: How to access the Cloud admin dashboard.
contentType: howto
---
diff --git a/docs/manage-cloud/cloud-data-management.md b/docs/manage-cloud/cloud-data-management.md
index 5428c7904..093c50c8e 100644
--- a/docs/manage-cloud/cloud-data-management.md
+++ b/docs/manage-cloud/cloud-data-management.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: How to manage your data on Cloud.
contentType: howto
---
diff --git a/docs/manage-cloud/cloud-ip.md b/docs/manage-cloud/cloud-ip.md
index cd50746ab..450864450 100644
--- a/docs/manage-cloud/cloud-ip.md
+++ b/docs/manage-cloud/cloud-ip.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: reference
---
diff --git a/docs/manage-cloud/overview.md b/docs/manage-cloud/overview.md
index 611867caf..6142cc48c 100644
--- a/docs/manage-cloud/overview.md
+++ b/docs/manage-cloud/overview.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
hide:
- toc
diff --git a/docs/manage-cloud/set-cloud-timezone.md b/docs/manage-cloud/set-cloud-timezone.md
index d81b25410..1dbb6c384 100644
--- a/docs/manage-cloud/set-cloud-timezone.md
+++ b/docs/manage-cloud/set-cloud-timezone.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: How to set your timezone on n8n Cloud.
contentType: howto
---
diff --git a/docs/manage-cloud/update-cloud-version.md b/docs/manage-cloud/update-cloud-version.md
index fee27bdb6..6ffc71e72 100644
--- a/docs/manage-cloud/update-cloud-version.md
+++ b/docs/manage-cloud/update-cloud-version.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: How to update your n8n version on Cloud.
contentType: howto
---
diff --git a/docs/privacy-security/incident-response.md b/docs/privacy-security/incident-response.md
index 05c9186ff..36d7cd9a1 100644
--- a/docs/privacy-security/incident-response.md
+++ b/docs/privacy-security/incident-response.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Incident response
description: n8n's incident response procedures.
contentType: explanation
diff --git a/docs/privacy-security/index.md b/docs/privacy-security/index.md
index 3d0a97077..4be1e0389 100644
--- a/docs/privacy-security/index.md
+++ b/docs/privacy-security/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Privacy and security
description: Privacy and security at n8n
contentType: overview
diff --git a/docs/privacy-security/privacy.md b/docs/privacy-security/privacy.md
index e9a76eceb..5d5996cca 100644
--- a/docs/privacy-security/privacy.md
+++ b/docs/privacy-security/privacy.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: n8n's privacy policies
tags:
- gdpr
diff --git a/docs/privacy-security/security.md b/docs/privacy-security/security.md
index 949a9dc82..70b609c6d 100644
--- a/docs/privacy-security/security.md
+++ b/docs/privacy-security/security.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: n8n's security policies
contentType: explanation
---
diff --git a/docs/privacy-security/what-you-can-do.md b/docs/privacy-security/what-you-can-do.md
index 55d0a85fb..50ba26c53 100644
--- a/docs/privacy-security/what-you-can-do.md
+++ b/docs/privacy-security/what-you-can-do.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: What you can do
description: What you can do to improve privacy and data security when using n8n.
contentType: howto
diff --git a/docs/release-notes.md b/docs/release-notes.md
index 53bde99da..164cfd321 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Release notes
description: Release notes detailing new features and bug fixes for n8n.
tags:
@@ -28,15 +29,85 @@ n8n uses [semantic versioning](https://semver.org/){:target=_blank .external-lin
* MINOR version when adding functionality in a backward-compatible manner.
* PATCH version when making backward-compatible bug fixes.
-## n8n@1.48.0
+## n8n@1.49.0
-View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.47.1...n8n@1.48.0){:target=_blank .external-link} for this version.
-**Release date:** 2024-06-27
+View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.48.3...n8n@1.49.0){:target=_blank .external-link} for this version.
+**Release date:** 2024-07-03
/// note | Next version
This is the `next` version. n8n recommends using the `latest` version. The `next` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12){:target=_blank .external-link}.
///
+This release contains a new node, node enhancements, and bug fixes.
+
+### Node updates
+- New node added: [Vector Store Tool](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolvectorstore/) for the AI Agent
+- Enhanced nodes: Zep Cloud Memory, Copper, Embeddings Cohere, GitHub, Merge, Zammad
+
+For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
+
+### Contributors
+
+[Jochem](https://github.com/jvdweerthof){:target=_blank .external-link}
+[KhDu](https://github.com/KhDu){:target=_blank .external-link}
+[Nico Weichbrodt](https://github.com/envy){:target=_blank .external-link}
+[Pavlo Paliychuk](https://github.com/paul-paliychuk){:target=_blank .external-link}
+
+
+## n8n@1.48.3
+
+View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.48.2...n8n@1.48.3){:target=_blank .external-link} for this version.
+**Release date:** 2024-07-03
+
+This release contains bug fixes.
+
+For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
+
+## n8n@1.47.3
+
+View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.47.2...n8n@1.47.3){:target=_blank .external-link} for this version.
+**Release date:** 2024-07-03
+
+/// note | Latest version
+This is the `latest` version. n8n recommends using the `latest` version. The `next` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12){:target=_blank .external-link}.
+///
+
+This release contains bug fixes.
+
+For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
+
+## n8n@1.48.2
+
+View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.48.1...n8n@1.48.2){:target=_blank .external-link} for this version.
+**Release date:** 2024-07-01
+
+This release contains bug fixes.
+
+For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
+
+## n8n@1.47.2
+
+View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.47.1...n8n@1.47.2){:target=_blank .external-link} for this version.
+**Release date:** 2024-07-01
+
+This release contains bug fixes.
+
+For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
+
+## n8n@1.48.1
+
+View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.48.0...n8n@1.48.1){:target=_blank .external-link} for this version.
+**Release date:** 2024-06-27
+
+This release contains bug fixes.
+
+For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
+
+## n8n@1.48.0
+
+View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.47.1...n8n@1.48.0){:target=_blank .external-link} for this version.
+**Release date:** 2024-06-27
+
This release contains bug fixes and feature enhancements.
@@ -47,20 +118,12 @@ For full release details, refer to [Releases](https://github.com/n8n-io/n8n/rele
[KubeAl](https://github.com/KubeAl){:target=_blank .external-link}
+
## n8n@1.47.1
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.47.0...n8n@1.47.1){:target=_blank .external-link} for this version.
**Release date:** 2024-06-26
-/// note | Latest version
-This is the `latest` version. n8n recommends using the `latest` version. The `next` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12){:target=_blank .external-link}.
-///
-
-
-/// warning | Breaking change
-Calling `$(...).last()` (or `(...).first()` or `$(...).all()`) without arguments now returns the last item (or first or all items) of the output that connects two nodes. Previously, it returned the item/items of the first output of that node. Refer to the [breaking changes log](https://github.com/n8n-io/n8n/blob/master/packages/cli/BREAKING-CHANGES.md#1470){:target=_blank .external-link} for details.
-///
-
This is a bug fix release.
For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
@@ -104,7 +167,6 @@ View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.45.0...n8n@1.45.1
**Release date:** 2024-06-12
-
This is a bug fix release.
For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
@@ -8064,7 +8126,7 @@ For a comprehensive list of changes, check out the [commits](https://github.com/
- Spotify: Added Create a Playlist operation to Playlist resource and Get New Releases to the Album resource
- Bug fixes
- Airtable: Fixed a bug with updating and deleting records
-- Added the functionality to expose metrics to Prometheus. Read more about that [here](/hosting/configuration/#prometheus)
+- Added the functionality to expose metrics to Prometheus. Read more about that [here](/hosting/configuration/environment-variables/)
- Updated fallback values to match the value type
- Added the functionality to display debugging information for pending workflows on exit
- Fixed an issue with queue mode for the executions that shouldn't be saved
diff --git a/docs/source-control-environments/create-environments.md b/docs/source-control-environments/create-environments.md
index bdd2893ea..e70d5508b 100644
--- a/docs/source-control-environments/create-environments.md
+++ b/docs/source-control-environments/create-environments.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Tutorial - Create environments with source control
description: How to use n8n's source control feature to create environments.
contentType: tutorial
diff --git a/docs/source-control-environments/index.md b/docs/source-control-environments/index.md
index ecace97e5..206a84a7c 100644
--- a/docs/source-control-environments/index.md
+++ b/docs/source-control-environments/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Source control and environments
description: Overview of source control and environments in n8n
contentType: overview
diff --git a/docs/source-control-environments/setup.md b/docs/source-control-environments/setup.md
index a62745f12..d5e6249ca 100644
--- a/docs/source-control-environments/setup.md
+++ b/docs/source-control-environments/setup.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Set up source control
description: Link n8n to your Git provider.
contentType: howto
diff --git a/docs/source-control-environments/understand/environments.md b/docs/source-control-environments/understand/environments.md
index ebed821de..bcd5e75a4 100644
--- a/docs/source-control-environments/understand/environments.md
+++ b/docs/source-control-environments/understand/environments.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Environments in n8n
description: Understand the concepts behind environments in n8n.
contentType: explanation
diff --git a/docs/source-control-environments/understand/git.md b/docs/source-control-environments/understand/git.md
index d21637b28..c172228fa 100644
--- a/docs/source-control-environments/understand/git.md
+++ b/docs/source-control-environments/understand/git.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Git and n8n
description: Git concepts and limitations in n8n.
contentType: explanation
diff --git a/docs/source-control-environments/understand/index.md b/docs/source-control-environments/understand/index.md
index 494ebbc53..15219697e 100644
--- a/docs/source-control-environments/understand/index.md
+++ b/docs/source-control-environments/understand/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Understand source control and environments
description: Understand how source control and environments work in n8n.
contentType: overview
diff --git a/docs/source-control-environments/understand/patterns.md b/docs/source-control-environments/understand/patterns.md
index e251e47db..340b3276f 100644
--- a/docs/source-control-environments/understand/patterns.md
+++ b/docs/source-control-environments/understand/patterns.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Branch patterns
description: Understand the different relationships between n8n instances and Git branches that are possible with source control.
contentType: explanation
diff --git a/docs/source-control-environments/using/copy-work.md b/docs/source-control-environments/using/copy-work.md
index 27070c97c..3c65b21ed 100644
--- a/docs/source-control-environments/using/copy-work.md
+++ b/docs/source-control-environments/using/copy-work.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Copy work between environments
description: How to get changes from one environment into another.
contentType: howto
diff --git a/docs/source-control-environments/using/index.md b/docs/source-control-environments/using/index.md
index f366dfc47..9a78a40b8 100644
--- a/docs/source-control-environments/using/index.md
+++ b/docs/source-control-environments/using/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Using source control and environments
description: How to use source control and environments in n8n.
contentType: overview
diff --git a/docs/source-control-environments/using/manage-variables.md b/docs/source-control-environments/using/manage-variables.md
index f6880ba64..88025f641 100644
--- a/docs/source-control-environments/using/manage-variables.md
+++ b/docs/source-control-environments/using/manage-variables.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Manage variables
description: Manage variable values in n8n using the API and source control.
contentType: howto
diff --git a/docs/source-control-environments/using/push-pull.md b/docs/source-control-environments/using/push-pull.md
index a792f818b..39c6e52e9 100644
--- a/docs/source-control-environments/using/push-pull.md
+++ b/docs/source-control-environments/using/push-pull.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Push and pull
description: Send work to Git, and fetch work from Git to your instance.
contentType: howto
diff --git a/docs/try-it-out/index.md b/docs/try-it-out/index.md
index 9f99edefa..3f5199db4 100644
--- a/docs/try-it-out/index.md
+++ b/docs/try-it-out/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: The n8n quickstarts.
contentType: overview
---
diff --git a/docs/try-it-out/longer-introduction.md b/docs/try-it-out/longer-introduction.md
index 85f324e0c..3da9df369 100644
--- a/docs/try-it-out/longer-introduction.md
+++ b/docs/try-it-out/longer-introduction.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Quickstart covering key concepts in n8n.
contentType: tutorial
---
diff --git a/docs/try-it-out/quickstart.md b/docs/try-it-out/quickstart.md
index d398dee22..36850a88c 100644
--- a/docs/try-it-out/quickstart.md
+++ b/docs/try-it-out/quickstart.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: A quick example to try out n8n.
contentType: tutorial
---
diff --git a/docs/user-management/account-types.md b/docs/user-management/account-types.md
index ad4bf8394..a9373b558 100644
--- a/docs/user-management/account-types.md
+++ b/docs/user-management/account-types.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: n8n account types
contentType: reference
---
diff --git a/docs/user-management/best-practices.md b/docs/user-management/best-practices.md
index 0df68ee66..f57622fcf 100644
--- a/docs/user-management/best-practices.md
+++ b/docs/user-management/best-practices.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: User management best practices.
contentType: explanation
---
diff --git a/docs/user-management/cloud-setup.md b/docs/user-management/cloud-setup.md
index 857ba52d6..428432f27 100644
--- a/docs/user-management/cloud-setup.md
+++ b/docs/user-management/cloud-setup.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Set up user management on n8n Cloud
contentType: howto
---
diff --git a/docs/user-management/index.md b/docs/user-management/index.md
index 6a2762e07..13d454b66 100644
--- a/docs/user-management/index.md
+++ b/docs/user-management/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: User management in n8n
contentType: overview
---
diff --git a/docs/user-management/ldap.md b/docs/user-management/ldap.md
index e10136224..247b639df 100644
--- a/docs/user-management/ldap.md
+++ b/docs/user-management/ldap.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Using LDAP with n8n.
contentType: howto
---
diff --git a/docs/user-management/manage-users.md b/docs/user-management/manage-users.md
index ec7bca71c..45d415ac6 100644
--- a/docs/user-management/manage-users.md
+++ b/docs/user-management/manage-users.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
---
diff --git a/docs/user-management/rbac/index.md b/docs/user-management/rbac/index.md
index 05c2a9ae3..982f6e12a 100644
--- a/docs/user-management/rbac/index.md
+++ b/docs/user-management/rbac/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
title: Role-based access control (RBAC)
description: Set up and use role-based access control (RBAC) in n8n.
diff --git a/docs/user-management/rbac/projects.md b/docs/user-management/rbac/projects.md
index 28ff2a7d6..cf5098f43 100644
--- a/docs/user-management/rbac/projects.md
+++ b/docs/user-management/rbac/projects.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
pageType: howto
title: RBAC projects
description: Understand how n8n uses project for RBAC. Learn how to create and manage projects.
diff --git a/docs/user-management/rbac/role-types.md b/docs/user-management/rbac/role-types.md
index 82bb7a970..6bb2d3b56 100644
--- a/docs/user-management/rbac/role-types.md
+++ b/docs/user-management/rbac/role-types.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: RBAC role tpyes
description: Understand the RBAC roles available in n8n, and the access they have.
pageType: reference
diff --git a/docs/user-management/saml/index.md b/docs/user-management/saml/index.md
index 9906212a6..cda4e8696 100644
--- a/docs/user-management/saml/index.md
+++ b/docs/user-management/saml/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: overview
---
diff --git a/docs/user-management/saml/managing.md b/docs/user-management/saml/managing.md
index e46498533..992f813b6 100644
--- a/docs/user-management/saml/managing.md
+++ b/docs/user-management/saml/managing.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Manage users with SAML
description: How to manage users and user logins with SAML enabled.
contentType: howto
diff --git a/docs/user-management/saml/okta.md b/docs/user-management/saml/okta.md
index 9cb12fe6f..5d6f60799 100644
--- a/docs/user-management/saml/okta.md
+++ b/docs/user-management/saml/okta.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Okta Workforce Identity SAML setup
description: Use Okta Workforce Identity with n8n.
contentType: tutorial
diff --git a/docs/user-management/saml/setup.md b/docs/user-management/saml/setup.md
index 11b6e295c..448450915 100644
--- a/docs/user-management/saml/setup.md
+++ b/docs/user-management/saml/setup.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Set up SAML
description: Generic setup instructions for using SAML SSO with n8n.
contentType: howto
diff --git a/docs/user-management/saml/troubleshooting.md b/docs/user-management/saml/troubleshooting.md
index 6809aad85..dc3a5d351 100644
--- a/docs/user-management/saml/troubleshooting.md
+++ b/docs/user-management/saml/troubleshooting.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Troubleshooting SAML SSO
description: A list of things to check if you encounter issues with SAML.
contentType: howto
diff --git a/docs/user-management/two-factor-auth.md b/docs/user-management/two-factor-auth.md
index 405cee88a..1bcf83f21 100644
--- a/docs/user-management/two-factor-auth.md
+++ b/docs/user-management/two-factor-auth.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: How to enable 2FA for your n8n account
---
diff --git a/docs/video-courses.md b/docs/video-courses.md
index c64ccd38b..21a170d33 100644
--- a/docs/video-courses.md
+++ b/docs/video-courses.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Video courses
description: Links to n8n's video courses on YouTube.
contentType: overview
@@ -36,4 +37,4 @@ The [Advanced](https://www.youtube.com/playlist?list=PLlET0GsrLUL5bxmx5c1H1Ms_Ot
- [Error workflows](https://youtu.be/77Ewdaby47M?si=6YRlC4nMgG4hVQPV){:target=_blank .external-link}
- [Building a full example](https://youtu.be/wOKLEfeJLVE?si=YMW5t-PzPq7QKbPY){:target=_blank .external-link}
- [Handling files](https://youtu.be/2RAZYNigqOY?si=9x4vLX2Qo08xx8vC){:target=_blank .external-link}
-- [Enterprise features](https://youtu.be/fXEubzmVJ_E?si=aK9_fI9tkF6F5CtB){:target=_blank .external-link}
\ No newline at end of file
+- [Enterprise features](https://youtu.be/fXEubzmVJ_E?si=aK9_fI9tkF6F5CtB){:target=_blank .external-link}
diff --git a/docs/workflows/components/connections.md b/docs/workflows/components/connections.md
index 5fc112d97..8f064520d 100644
--- a/docs/workflows/components/connections.md
+++ b/docs/workflows/components/connections.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: A connection establishes a link between nodes to route data through the workflow.
contentType: howto
---
diff --git a/docs/workflows/components/index.md b/docs/workflows/components/index.md
index 2456f649e..a62863906 100644
--- a/docs/workflows/components/index.md
+++ b/docs/workflows/components/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Learn about the building blocks of workflows.
contentType: overview
---
diff --git a/docs/workflows/components/nodes.md b/docs/workflows/components/nodes.md
index 57fda9ddd..43dd95fde 100644
--- a/docs/workflows/components/nodes.md
+++ b/docs/workflows/components/nodes.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: A node is an entry point for retrieving data, a function to process data, or an exit for sending data.
contentType: howto
---
diff --git a/docs/workflows/components/sticky-notes.md b/docs/workflows/components/sticky-notes.md
index 8423b6256..5fc7c3892 100644
--- a/docs/workflows/components/sticky-notes.md
+++ b/docs/workflows/components/sticky-notes.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Annotate your workflows using sticky notes.
contentType: howto
---
diff --git a/docs/workflows/create.md b/docs/workflows/create.md
index 4bd2828ae..b3bc1d3f8 100644
--- a/docs/workflows/create.md
+++ b/docs/workflows/create.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Create, run, and activate workflows.
contentType: howto
---
diff --git a/docs/workflows/executions/all-executions.md b/docs/workflows/executions/all-executions.md
index 5b37ded4c..fa4758585 100644
--- a/docs/workflows/executions/all-executions.md
+++ b/docs/workflows/executions/all-executions.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: View and filter all executions for all workflows.
contentType: howto
---
diff --git a/docs/workflows/executions/custom-executions-data.md b/docs/workflows/executions/custom-executions-data.md
index 68408e520..357bdff43 100644
--- a/docs/workflows/executions/custom-executions-data.md
+++ b/docs/workflows/executions/custom-executions-data.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Add custom data to your workflow executions using the Code node. You can then filter executions by this data.
contentType: howto
---
diff --git a/docs/workflows/executions/debug.md b/docs/workflows/executions/debug.md
index 52b3379f1..465bb2b57 100644
--- a/docs/workflows/executions/debug.md
+++ b/docs/workflows/executions/debug.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
title: Debug and re-run past executions
description: How to copy execution data into your current workflow in order to debug previous executions.
diff --git a/docs/workflows/executions/index.md b/docs/workflows/executions/index.md
index ef7d06aae..73d93bd51 100644
--- a/docs/workflows/executions/index.md
+++ b/docs/workflows/executions/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: An execution is a single run of a workflow.
contentType: overview
---
diff --git a/docs/workflows/executions/single-workflow-executions.md b/docs/workflows/executions/single-workflow-executions.md
index 8ea932980..662f598fc 100644
--- a/docs/workflows/executions/single-workflow-executions.md
+++ b/docs/workflows/executions/single-workflow-executions.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: View and filter all executions for the workflow currently open on the canvas.
contentType: howto
---
diff --git a/docs/workflows/export-import.md b/docs/workflows/export-import.md
index ab37dcff6..4790d0981 100644
--- a/docs/workflows/export-import.md
+++ b/docs/workflows/export-import.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Export and import workflows
contentType: howto
---
diff --git a/docs/workflows/history.md b/docs/workflows/history.md
index 24cd7682a..368e2a667 100644
--- a/docs/workflows/history.md
+++ b/docs/workflows/history.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: howto
title: Workflow history
description: View and restore previous versions of your workflow.
diff --git a/docs/workflows/index.md b/docs/workflows/index.md
index 6d44faa16..4732c71bc 100644
--- a/docs/workflows/index.md
+++ b/docs/workflows/index.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: "Learn about the key components of automation in n8n."
contentType: overview
---
diff --git a/docs/workflows/settings.md b/docs/workflows/settings.md
index 738f525c7..2106842bf 100644
--- a/docs/workflows/settings.md
+++ b/docs/workflows/settings.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Manage settings for an individual workflow.
contentType: howto
---
diff --git a/docs/workflows/sharing.md b/docs/workflows/sharing.md
index 39147a874..839f3fd24 100644
--- a/docs/workflows/sharing.md
+++ b/docs/workflows/sharing.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Share workflows between users.
contentType: howto
---
diff --git a/docs/workflows/tags.md b/docs/workflows/tags.md
index b42e6c156..b33c86648 100644
--- a/docs/workflows/tags.md
+++ b/docs/workflows/tags.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Workflow tags
description: Use tags to label workflows, making it easier to browse your workflows.
contentType: howto
diff --git a/docs/workflows/templates.md b/docs/workflows/templates.md
index dca4fb1c0..707a85623 100644
--- a/docs/workflows/templates.md
+++ b/docs/workflows/templates.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Use workflow templates
contentType: howto
---
diff --git a/docs/workflows/workflow-id.md b/docs/workflows/workflow-id.md
index ad7df8803..0217998a8 100644
--- a/docs/workflows/workflow-id.md
+++ b/docs/workflows/workflow-id.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
description: Find your workflow ID.
contentType: howto
---
diff --git a/document-templates/app-nodes.md b/document-templates/app-nodes.md
index d01385e01..2a3fc86f6 100644
--- a/document-templates/app-nodes.md
+++ b/document-templates/app-nodes.md
@@ -17,6 +17,7 @@ Set the meta title and meta description in the frontmatter
-->
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: _Name_
description: Documentation for the _Name_ node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
@@ -38,22 +39,22 @@ On this page, you'll find a list of operations the _Name_ node supports, and lin
You can find authentication information for this node [here](/integrations/builtin/credentials/_Name_/).
///
-/// note | Examples and templates
-For usage examples and templates to help you get started, refer to n8n's [_Name_'s integrations](https://n8n.io/integrations/_Name_/){:target=_blank .external-link} page.
-///
## Operations
* _Bullet list_
* _Of available operations_.
+## Templates and examples
+
+
+[[ templatesWidget(title, page) ]]
+
## Related resources
n8n provides a trigger node for _Name_. You can find the trigger node docs [here](/integrations/builtin/trigger-nodes/n8n-nodes-base._Name_trigger/).
-
-View [example workflows and related content](https://n8n.io/integrations/_slug_/){:target=_blank .external-link} on n8n's website.
Refer to [_Name_'s documentation](){:target=_blank .external-link} for more information about the service.
diff --git a/document-templates/cluster-nodes.md b/document-templates/cluster-nodes.md
index 2b55e9dba..60fcad540 100644
--- a/document-templates/cluster-nodes.md
+++ b/document-templates/cluster-nodes.md
@@ -1,4 +1,5 @@
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: _Name_
description: Documentation for the _Name_ node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
@@ -15,16 +16,18 @@ On this page, you'll find a list of operations the _Name_ node supports, and lin
/// note | Credentials
You can find authentication information for this node [here](/integrations/builtin/credentials/_Name_/).
///
-/// note | Examples and templates
-For usage examples and templates to help you get started, refer to n8n's [_Name_'s integrations](https://n8n.io/integrations/_Name_/){:target=_blank .external-link} page.
-///
+
## Node parameters
* _Bullet list_
* _Of available operations_.
+## Templates and examples
+
+
+[[ templatesWidget(title, page) ]]
+
## Related resources
-View [example workflows and related content](https://n8n.io/integrations/_Name_/){:target=_blank .external-link} on n8n's website.
Refer to [_Name_'s documentation](){:target=_blank .external-link} for more information about the service.
diff --git a/document-templates/core-nodes.md b/document-templates/core-nodes.md
index 22d55afd4..6ddf4c2ec 100644
--- a/document-templates/core-nodes.md
+++ b/document-templates/core-nodes.md
@@ -13,6 +13,7 @@ You can find more info on working with the docs project in the README: https://g
-->
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: _Name_
description: Documentation for the _Name_ node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples.
contentType: integration
@@ -31,9 +32,7 @@ _Briefly summarize the functionality._
You can find authentication information for this node [here](/integrations/builtin/credentials/_Name_/).
///
-/// note | Examples and templates
-For usage examples and templates to help you get started, refer to n8n's [_Name_ integrations](https://n8n.io/integrations/_Name_/){:target=_blank .external-link} page.
-///
+
## Node parameters
@@ -46,4 +45,9 @@ You should include: quirks, pain points, complex topics that trip people up
You should not include: basic usage examples
-->
+## Templates and examples
+
+
+[[ templatesWidget(title, page) ]]
+
diff --git a/document-templates/credentials.md b/document-templates/credentials.md
index 1ebaaaefa..8e2ad9751 100644
--- a/document-templates/credentials.md
+++ b/document-templates/credentials.md
@@ -17,6 +17,7 @@ Set the meta title and meta description in the frontmatter
-->
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: _Name_ credentials
description: Documentation for the _Name_ credentials. Use these credentials to authenticate _Name_ in n8n, a workflow automation platform.
---
@@ -47,8 +48,8 @@ _Include info on services they need to sign up for_
Refer to [_Name_'s API documentation](){:target=_blank .external-link} for more information about authenticating with the service.
-
-This is a credential-only node. Refer to [Custom API operations](/integrations/custom-operations/) to learn more. View [example workflows and related content](https://n8n.io/integrations/_Name_/){:target=_blank .external-link} on n8n's website.
+
## Using _Auth method_
diff --git a/document-templates/trigger-nodes.md b/document-templates/trigger-nodes.md
index b98db4ad6..767a09835 100644
--- a/document-templates/trigger-nodes.md
+++ b/document-templates/trigger-nodes.md
@@ -17,6 +17,7 @@ Set the meta title and meta description in the frontmatter
-->
---
+#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: _Name_ trigger
description: Documentation for the _Name_ trigger node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
contentType: integration
@@ -38,9 +39,7 @@ On this page, you'll find a list of events the _Name_ trigger node can respond t
/// note | Credentials
You can find authentication information for this node [here](/integrations/builtin/credentials/_Name_/).
///
-/// note | Examples and templates
-For usage examples and templates to help you get started, refer to n8n's [_Name_ integrations](https://n8n.io/integrations/_Name_/){:target=_blank .external-link} page.
-///
+
## Events
* _Bullet list_
diff --git a/main.py b/main.py
new file mode 100644
index 000000000..d8e5ce810
--- /dev/null
+++ b/main.py
@@ -0,0 +1,47 @@
+import requests
+import json
+import re
+import urllib.parse
+
+def define_env(env):
+
+ @env.macro
+ def templatesWidget(title, page):
+ node_for_template = title.replace(' ', '+')
+ getLastBitOfUrl = re.search("(\.)(.*)(\/)$", page.abs_url)
+ node_for_integrations_slug = getLastBitOfUrl.group(2)
+ response = requests.get(url = f'https://api.n8n.io/api/templates/search?rows=3&search=&category=&apps={node_for_template}&page=1&sort=views:desc')
+ data = response.json()
+ # not all nodes have three templates
+ try:
+ workflows = data["workflows"][:3]
+ workflow_one, workflow_two, workflow_three = workflows
+ except:
+ return f'Browse {title} integration templates, or search all templates'
+ # the data is not trustworthy
+ try:
+ workflow_one_title = workflow_one["name"]
+ workflow_one_user = workflow_one["user"]["name"]
+ workflow_one_url = f'https://n8n.io/workflows/{workflow_one["id"]}-{workflow_one["name"].lower().replace(" ", "-").replace(":", "")}/'
+ workflow_two_title = workflow_two["name"]
+ workflow_two_user = workflow_two["user"]["name"]
+ workflow_two_url = f'https://n8n.io/workflows/{workflow_two["id"]}-{workflow_two["name"].lower().replace(" ", "-").replace(":", "")}/'
+ workflow_three_title = workflow_three["name"]
+ workflow_three_url = f'https://n8n.io/workflows/{workflow_three["id"]}-{workflow_three["name"].lower().replace(" ", "-").replace(":", "")}/'
+ workflow_three_user = workflow_three["user"]["name"]
+ except:
+ return f'Browse all {title} integration templates, or search all templates'
+
+ return f''
+
+ def workflowDemo(workflow_endpoint):
+ r = requests.get(url = workflow_endpoint)
+ wf_data = r.json()
+ template_url = f'https://n8n.io/workflows/{wf_data["id"]}-{wf_data["name"].lower().replace(" ", "-").replace(":", "")}/'
+ workflow_json = {
+ "nodes": wf_data['workflow']['nodes'],
+ "connections": wf_data['workflow']['connections']
+ }
+ encoded_workflow_json = urllib.parse.quote(json.dumps(workflow_json))
+ return f""
+
diff --git a/mkdocs.yml b/mkdocs.yml
index 15547e013..530553328 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -82,6 +82,8 @@ extra:
extra_css:
- _extra/css/extra.css
- _extra/css/macro-styles.css
+ - _extra/css/templates-widget.css
+ - _extra/css/workflow-demo.css
# https://squidfunk.github.io/mkdocs-material/customization/?h=#additional-javascript
extra_javascript:
- _extra/javascript/extra.js
@@ -153,6 +155,9 @@ plugins:
# - info
# Search is built in, but must be enabled when you add other plugins
- search
+ - exclude:
+ glob:
+ #- integrations/builtin/*
# https://squidfunk.github.io/mkdocs-material/reference/images/#lightbox
- glightbox:
touchNavigation: false
@@ -357,7 +362,7 @@ nav:
- integrations/builtin/core-nodes/n8n-nodes-base.executecommand.md
- integrations/builtin/core-nodes/n8n-nodes-base.executeworkflow.md
- integrations/builtin/core-nodes/n8n-nodes-base.executeworkflowtrigger.md
- - integrations/builtin/core-nodes/n8n-nodes-base.executionData.md
+ - integrations/builtin/core-nodes/n8n-nodes-base.executiondata.md
- integrations/builtin/core-nodes/n8n-nodes-base.extractfromfile.md
- integrations/builtin/core-nodes/n8n-nodes-base.filter.md
- integrations/builtin/core-nodes/n8n-nodes-base.ftp.md
diff --git a/requirements.txt b/requirements.txt
index 8473c87be..c02569a96 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,2 +1,3 @@
+mkdocs-exclude==1.0.2
mkdocs-glightbox
mkdocs-macros-plugin==1.0.4