@n8n-as-code/skills 1.9.0-next.44 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-04-16T20:18:34.874Z",
2
+ "generatedAt": "2026-04-16T20:39:04.093Z",
3
3
  "version": "1.0.0",
4
4
  "sourceUrl": "https://docs.n8n.io/llms.txt",
5
5
  "totalPages": 1263,
@@ -4139,127 +4139,127 @@
4139
4139
  },
4140
4140
  {
4141
4141
  "id": "page-0027",
4142
- "title": "Call an API to fetch data",
4143
- "url": "https://docs.n8n.io/advanced-ai/examples/api-workflow-tool/index.md",
4144
- "urlPath": "advanced-ai/examples/api-workflow-tool/index.md",
4142
+ "title": "Agents vs chains example",
4143
+ "url": "https://docs.n8n.io/advanced-ai/examples/agent-chain-comparison/index.md",
4144
+ "urlPath": "advanced-ai/examples/agent-chain-comparison/index.md",
4145
4145
  "category": "advanced-ai",
4146
4146
  "subcategory": "examples",
4147
4147
  "nodeName": null,
4148
4148
  "nodeType": null,
4149
4149
  "content": {
4150
- "markdown": "# Call an API to fetch data\n\nUse n8n to bring data from any [API](../../../glossary/#api) to your AI. This workflow uses the [Chat Trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/) to provide the chat interface, and the [Call n8n Workflow Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/) to call a second workflow that calls the API. The second workflow uses AI functionality to refine the API request based on the user's query.\n\n[View workflow file](/_workflows/advanced-ai/examples/let_your_ai_call_an_api.json)\n\n## Key features\n\nThis workflow uses:\n\n- [Chat Trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/): start your workflow and respond to user chat interactions. The node provides a customizable chat interface.\n- [Agent](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/): the key piece of the AI workflow. The Agent interacts with other components of the workflow and makes decisions about what tools to use.\n- [Call n8n Workflow Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/): plug in n8n workflows as custom tools. In AI, a tool is an interface the AI can use to interact with the world (in this case, the data provided by your workflow). The AI model uses the tool to access information beyond its built-in dataset.\n- A [Basic LLM Chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/) with an [Auto-fixing Output Parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserautofixing/) and [Structured Output Parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured/) to read the user's query and set parameters for the API call based on the user input.\n\n## Using the example\n\nTo load the template into your n8n instance:\n\n1. Download the workflow JSON file.\n1. Open a new workflow in your n8n instance.\n1. Copy in the JSON, or select **Workflow menu** > **Import from file...**.\n\nThe example workflows use Sticky Notes to guide you:\n\n- Yellow: notes and information.\n- Green: instructions to run the workflow.\n- Orange: you need to change something to make the workflow work.\n- Blue: draws attention to a key feature of the example.\n",
4151
- "excerpt": "# Call an API to fetch data Use n8n to bring data from any [API](../../../glossary/#api) to your AI. This workflow uses the [Chat Trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/) to provide the chat interface, and the [Call n8n Workflow Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/) to call a second workflow that calls the API. The second workflow uses AI functionality to refine the API request based on the user'...",
4150
+ "markdown": "# Demonstration of key differences between agents and chains\n\nIn this workflow you can choose whether your chat query goes to an [agent](../../../glossary/#ai-agent) or [chain](../../../glossary/#ai-chain). It shows some of the ways that agents are more powerful than chains.\n\n[View workflow file](/_workflows/advanced-ai/examples/agents_vs_chains.json)\n\n## Key features\n\nThis workflow uses:\n\n- [Chat Trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/): start your workflow and respond to user chat interactions. The node provides a customizable chat interface.\n- [Switch node](../../../integrations/builtin/core-nodes/n8n-nodes-base.switch/): directs your query to either the agent or chain, depending on which you specify in your query. If you say \"agent\" it sends it to the agent. If you say \"chain\" it sends it to the chain.\n- [Agent](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/): the Agent node interacts with other components of the workflow and makes decisions about what [tools](../../../glossary/#ai-tool) to use.\n- [Basic LLM Chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/): the Basic LLM Chain node supports chatting with a connected LLM, but doesn't support [memory](../../../glossary/#ai-memory) or tools.\n\n## Using the example\n\nTo load the template into your n8n instance:\n\n1. Download the workflow JSON file.\n1. Open a new workflow in your n8n instance.\n1. Copy in the JSON, or select **Workflow menu** > **Import from file...**.\n\nThe example workflows use Sticky Notes to guide you:\n\n- Yellow: notes and information.\n- Green: instructions to run the workflow.\n- Orange: you need to change something to make the workflow work.\n- Blue: draws attention to a key feature of the example.\n",
4151
+ "excerpt": "# Demonstration of key differences between agents and chains In this workflow you can choose whether your chat query goes to an [agent](../../../glossary/#ai-agent) or [chain](../../../glossary/#ai-chain). It shows some of the ways that agents are more powerful than chains. [View workflow file](/_workflows/advanced-ai/examples/agents_vs_chains.json) ## Key features This workflow uses: - [Chat Trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/): start your wor...",
4152
4152
  "sections": [
4153
4153
  {
4154
- "title": "Call an API to fetch data",
4154
+ "title": "Demonstration of key differences between agents and chains",
4155
4155
  "level": 1,
4156
- "content": "Use n8n to bring data from any [API](../../../glossary/#api) to your AI. This workflow uses the [Chat Trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/) to provide the chat interface, and the [Call n8n Workflow Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/) to call a second workflow that calls the API. The second workflow uses AI functionality to refine the API request based on the user's query.\n\n[View workflow file](/_workflows/advanced-ai/examples/let_your_ai_call_an_api.json)"
4156
+ "content": "In this workflow you can choose whether your chat query goes to an [agent](../../../glossary/#ai-agent) or [chain](../../../glossary/#ai-chain). It shows some of the ways that agents are more powerful than chains.\n\n[View workflow file](/_workflows/advanced-ai/examples/agents_vs_chains.json)"
4157
4157
  }
4158
4158
  ]
4159
4159
  },
4160
4160
  "metadata": {
4161
4161
  "keywords": [
4162
- "call",
4163
- "fetch",
4164
- "data",
4162
+ "agents",
4163
+ "chains",
4164
+ "example",
4165
+ "demonstration",
4166
+ "differences",
4167
+ "between",
4165
4168
  "features",
4166
- "using",
4167
- "example"
4169
+ "using"
4168
4170
  ],
4169
4171
  "useCases": [],
4170
4172
  "operations": [],
4171
4173
  "codeExamples": 0,
4172
4174
  "complexity": "beginner",
4173
4175
  "readingTime": "2 min",
4174
- "contentLength": 2362,
4176
+ "contentLength": 1814,
4175
4177
  "relatedPages": []
4176
4178
  },
4177
4179
  "searchIndex": {
4178
- "fullText": "call an api to fetch data # call an api to fetch data\n\nuse n8n to bring data from any [api](../../../glossary/#api) to your ai. this workflow uses the [chat trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/) to provide the chat interface, and the [call n8n workflow tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/) to call a second workflow that calls the api. the second workflow uses ai functionality to refine the api request based on the user's query.\n\n[view workflow file](/_workflows/advanced-ai/examples/let_your_ai_call_an_api.json)\n\n## key features\n\nthis workflow uses:\n\n- [chat trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/): start your workflow and respond to user chat interactions. the node provides a customizable chat interface.\n- [agent](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/): the key piece of the ai workflow. the agent interacts with other components of the workflow and makes decisions about what tools to use.\n- [call n8n workflow tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/): plug in n8n workflows as custom tools. in ai, a tool is an interface the ai can use to interact with the world (in this case, the data provided by your workflow). the ai model uses the tool to access information beyond its built-in dataset.\n- a [basic llm chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/) with an [auto-fixing output parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserautofixing/) and [structured output parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured/) to read the user's query and set parameters for the api call based on the user input.\n\n## using the example\n\nto load the template into your n8n instance:\n\n1. download the workflow json file.\n1. open a new workflow in your n8n instance.\n1. copy in the json, or select **workflow menu** > **import from file...**.\n\nthe example workflows use sticky notes to guide you:\n\n- yellow: notes and information.\n- green: instructions to run the workflow.\n- orange: you need to change something to make the workflow work.\n- blue: draws attention to a key feature of the example.\n call an api to fetch data",
4180
+ "fullText": "agents vs chains example # demonstration of key differences between agents and chains\n\nin this workflow you can choose whether your chat query goes to an [agent](../../../glossary/#ai-agent) or [chain](../../../glossary/#ai-chain). it shows some of the ways that agents are more powerful than chains.\n\n[view workflow file](/_workflows/advanced-ai/examples/agents_vs_chains.json)\n\n## key features\n\nthis workflow uses:\n\n- [chat trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/): start your workflow and respond to user chat interactions. the node provides a customizable chat interface.\n- [switch node](../../../integrations/builtin/core-nodes/n8n-nodes-base.switch/): directs your query to either the agent or chain, depending on which you specify in your query. if you say \"agent\" it sends it to the agent. if you say \"chain\" it sends it to the chain.\n- [agent](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/): the agent node interacts with other components of the workflow and makes decisions about what [tools](../../../glossary/#ai-tool) to use.\n- [basic llm chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/): the basic llm chain node supports chatting with a connected llm, but doesn't support [memory](../../../glossary/#ai-memory) or tools.\n\n## using the example\n\nto load the template into your n8n instance:\n\n1. download the workflow json file.\n1. open a new workflow in your n8n instance.\n1. copy in the json, or select **workflow menu** > **import from file...**.\n\nthe example workflows use sticky notes to guide you:\n\n- yellow: notes and information.\n- green: instructions to run the workflow.\n- orange: you need to change something to make the workflow work.\n- blue: draws attention to a key feature of the example.\n demonstration of key differences between agents and chains",
4179
4181
  "importantTerms": [
4180
- "nodes",
4181
4182
  "workflow",
4182
- "integrations",
4183
- "builtin",
4184
- "langchain",
4185
- "call",
4186
- "cluster",
4187
- "data",
4183
+ "nodes",
4184
+ "agent",
4185
+ "chain",
4188
4186
  "your",
4187
+ "agents",
4188
+ "chains",
4189
+ "example",
4189
4190
  "chat",
4190
- "uses",
4191
- "tool",
4192
- "user",
4193
- "fetch",
4194
- "this",
4195
- "interface",
4191
+ "glossary",
4192
+ "integrations",
4193
+ "builtin",
4194
+ "node",
4195
+ "query",
4196
4196
  "file",
4197
4197
  "json",
4198
- "agent",
4199
- "with",
4200
- "example"
4198
+ "langchain"
4201
4199
  ]
4202
4200
  }
4203
4201
  },
4204
4202
  {
4205
4203
  "id": "page-0028",
4206
- "title": "Agents vs chains example",
4207
- "url": "https://docs.n8n.io/advanced-ai/examples/agent-chain-comparison/index.md",
4208
- "urlPath": "advanced-ai/examples/agent-chain-comparison/index.md",
4204
+ "title": "Call an API to fetch data",
4205
+ "url": "https://docs.n8n.io/advanced-ai/examples/api-workflow-tool/index.md",
4206
+ "urlPath": "advanced-ai/examples/api-workflow-tool/index.md",
4209
4207
  "category": "advanced-ai",
4210
4208
  "subcategory": "examples",
4211
4209
  "nodeName": null,
4212
4210
  "nodeType": null,
4213
4211
  "content": {
4214
- "markdown": "# Demonstration of key differences between agents and chains\n\nIn this workflow you can choose whether your chat query goes to an [agent](../../../glossary/#ai-agent) or [chain](../../../glossary/#ai-chain). It shows some of the ways that agents are more powerful than chains.\n\n[View workflow file](/_workflows/advanced-ai/examples/agents_vs_chains.json)\n\n## Key features\n\nThis workflow uses:\n\n- [Chat Trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/): start your workflow and respond to user chat interactions. The node provides a customizable chat interface.\n- [Switch node](../../../integrations/builtin/core-nodes/n8n-nodes-base.switch/): directs your query to either the agent or chain, depending on which you specify in your query. If you say \"agent\" it sends it to the agent. If you say \"chain\" it sends it to the chain.\n- [Agent](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/): the Agent node interacts with other components of the workflow and makes decisions about what [tools](../../../glossary/#ai-tool) to use.\n- [Basic LLM Chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/): the Basic LLM Chain node supports chatting with a connected LLM, but doesn't support [memory](../../../glossary/#ai-memory) or tools.\n\n## Using the example\n\nTo load the template into your n8n instance:\n\n1. Download the workflow JSON file.\n1. Open a new workflow in your n8n instance.\n1. Copy in the JSON, or select **Workflow menu** > **Import from file...**.\n\nThe example workflows use Sticky Notes to guide you:\n\n- Yellow: notes and information.\n- Green: instructions to run the workflow.\n- Orange: you need to change something to make the workflow work.\n- Blue: draws attention to a key feature of the example.\n",
4215
- "excerpt": "# Demonstration of key differences between agents and chains In this workflow you can choose whether your chat query goes to an [agent](../../../glossary/#ai-agent) or [chain](../../../glossary/#ai-chain). It shows some of the ways that agents are more powerful than chains. [View workflow file](/_workflows/advanced-ai/examples/agents_vs_chains.json) ## Key features This workflow uses: - [Chat Trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/): start your wor...",
4212
+ "markdown": "# Call an API to fetch data\n\nUse n8n to bring data from any [API](../../../glossary/#api) to your AI. This workflow uses the [Chat Trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/) to provide the chat interface, and the [Call n8n Workflow Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/) to call a second workflow that calls the API. The second workflow uses AI functionality to refine the API request based on the user's query.\n\n[View workflow file](/_workflows/advanced-ai/examples/let_your_ai_call_an_api.json)\n\n## Key features\n\nThis workflow uses:\n\n- [Chat Trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/): start your workflow and respond to user chat interactions. The node provides a customizable chat interface.\n- [Agent](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/): the key piece of the AI workflow. The Agent interacts with other components of the workflow and makes decisions about what tools to use.\n- [Call n8n Workflow Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/): plug in n8n workflows as custom tools. In AI, a tool is an interface the AI can use to interact with the world (in this case, the data provided by your workflow). The AI model uses the tool to access information beyond its built-in dataset.\n- A [Basic LLM Chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/) with an [Auto-fixing Output Parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserautofixing/) and [Structured Output Parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured/) to read the user's query and set parameters for the API call based on the user input.\n\n## Using the example\n\nTo load the template into your n8n instance:\n\n1. Download the workflow JSON file.\n1. Open a new workflow in your n8n instance.\n1. Copy in the JSON, or select **Workflow menu** > **Import from file...**.\n\nThe example workflows use Sticky Notes to guide you:\n\n- Yellow: notes and information.\n- Green: instructions to run the workflow.\n- Orange: you need to change something to make the workflow work.\n- Blue: draws attention to a key feature of the example.\n",
4213
+ "excerpt": "# Call an API to fetch data Use n8n to bring data from any [API](../../../glossary/#api) to your AI. This workflow uses the [Chat Trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/) to provide the chat interface, and the [Call n8n Workflow Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/) to call a second workflow that calls the API. The second workflow uses AI functionality to refine the API request based on the user'...",
4216
4214
  "sections": [
4217
4215
  {
4218
- "title": "Demonstration of key differences between agents and chains",
4216
+ "title": "Call an API to fetch data",
4219
4217
  "level": 1,
4220
- "content": "In this workflow you can choose whether your chat query goes to an [agent](../../../glossary/#ai-agent) or [chain](../../../glossary/#ai-chain). It shows some of the ways that agents are more powerful than chains.\n\n[View workflow file](/_workflows/advanced-ai/examples/agents_vs_chains.json)"
4218
+ "content": "Use n8n to bring data from any [API](../../../glossary/#api) to your AI. This workflow uses the [Chat Trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/) to provide the chat interface, and the [Call n8n Workflow Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/) to call a second workflow that calls the API. The second workflow uses AI functionality to refine the API request based on the user's query.\n\n[View workflow file](/_workflows/advanced-ai/examples/let_your_ai_call_an_api.json)"
4221
4219
  }
4222
4220
  ]
4223
4221
  },
4224
4222
  "metadata": {
4225
4223
  "keywords": [
4226
- "agents",
4227
- "chains",
4228
- "example",
4229
- "demonstration",
4230
- "differences",
4231
- "between",
4224
+ "call",
4225
+ "fetch",
4226
+ "data",
4232
4227
  "features",
4233
- "using"
4228
+ "using",
4229
+ "example"
4234
4230
  ],
4235
4231
  "useCases": [],
4236
4232
  "operations": [],
4237
4233
  "codeExamples": 0,
4238
4234
  "complexity": "beginner",
4239
4235
  "readingTime": "2 min",
4240
- "contentLength": 1814,
4236
+ "contentLength": 2362,
4241
4237
  "relatedPages": []
4242
4238
  },
4243
4239
  "searchIndex": {
4244
- "fullText": "agents vs chains example # demonstration of key differences between agents and chains\n\nin this workflow you can choose whether your chat query goes to an [agent](../../../glossary/#ai-agent) or [chain](../../../glossary/#ai-chain). it shows some of the ways that agents are more powerful than chains.\n\n[view workflow file](/_workflows/advanced-ai/examples/agents_vs_chains.json)\n\n## key features\n\nthis workflow uses:\n\n- [chat trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/): start your workflow and respond to user chat interactions. the node provides a customizable chat interface.\n- [switch node](../../../integrations/builtin/core-nodes/n8n-nodes-base.switch/): directs your query to either the agent or chain, depending on which you specify in your query. if you say \"agent\" it sends it to the agent. if you say \"chain\" it sends it to the chain.\n- [agent](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/): the agent node interacts with other components of the workflow and makes decisions about what [tools](../../../glossary/#ai-tool) to use.\n- [basic llm chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/): the basic llm chain node supports chatting with a connected llm, but doesn't support [memory](../../../glossary/#ai-memory) or tools.\n\n## using the example\n\nto load the template into your n8n instance:\n\n1. download the workflow json file.\n1. open a new workflow in your n8n instance.\n1. copy in the json, or select **workflow menu** > **import from file...**.\n\nthe example workflows use sticky notes to guide you:\n\n- yellow: notes and information.\n- green: instructions to run the workflow.\n- orange: you need to change something to make the workflow work.\n- blue: draws attention to a key feature of the example.\n demonstration of key differences between agents and chains",
4240
+ "fullText": "call an api to fetch data # call an api to fetch data\n\nuse n8n to bring data from any [api](../../../glossary/#api) to your ai. this workflow uses the [chat trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/) to provide the chat interface, and the [call n8n workflow tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/) to call a second workflow that calls the api. the second workflow uses ai functionality to refine the api request based on the user's query.\n\n[view workflow file](/_workflows/advanced-ai/examples/let_your_ai_call_an_api.json)\n\n## key features\n\nthis workflow uses:\n\n- [chat trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/): start your workflow and respond to user chat interactions. the node provides a customizable chat interface.\n- [agent](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/): the key piece of the ai workflow. the agent interacts with other components of the workflow and makes decisions about what tools to use.\n- [call n8n workflow tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/): plug in n8n workflows as custom tools. in ai, a tool is an interface the ai can use to interact with the world (in this case, the data provided by your workflow). the ai model uses the tool to access information beyond its built-in dataset.\n- a [basic llm chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/) with an [auto-fixing output parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserautofixing/) and [structured output parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured/) to read the user's query and set parameters for the api call based on the user input.\n\n## using the example\n\nto load the template into your n8n instance:\n\n1. download the workflow json file.\n1. open a new workflow in your n8n instance.\n1. copy in the json, or select **workflow menu** > **import from file...**.\n\nthe example workflows use sticky notes to guide you:\n\n- yellow: notes and information.\n- green: instructions to run the workflow.\n- orange: you need to change something to make the workflow work.\n- blue: draws attention to a key feature of the example.\n call an api to fetch data",
4245
4241
  "importantTerms": [
4246
- "workflow",
4247
4242
  "nodes",
4248
- "agent",
4249
- "chain",
4250
- "your",
4251
- "agents",
4252
- "chains",
4253
- "example",
4254
- "chat",
4255
- "glossary",
4243
+ "workflow",
4256
4244
  "integrations",
4257
4245
  "builtin",
4258
- "node",
4259
- "query",
4246
+ "langchain",
4247
+ "call",
4248
+ "cluster",
4249
+ "data",
4250
+ "your",
4251
+ "chat",
4252
+ "uses",
4253
+ "tool",
4254
+ "user",
4255
+ "fetch",
4256
+ "this",
4257
+ "interface",
4260
4258
  "file",
4261
4259
  "json",
4262
- "langchain"
4260
+ "agent",
4261
+ "with",
4262
+ "example"
4263
4263
  ]
4264
4264
  }
4265
4265
  },
@@ -21649,27 +21649,26 @@
21649
21649
  },
21650
21650
  {
21651
21651
  "id": "page-0256",
21652
- "title": "AWS Textract",
21653
- "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.awstextract/index.md",
21654
- "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.awstextract/index.md",
21652
+ "title": "AWS SQS",
21653
+ "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.awssqs/index.md",
21654
+ "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.awssqs/index.md",
21655
21655
  "category": "integrations",
21656
21656
  "subcategory": "app-nodes",
21657
- "nodeName": "awstextract",
21658
- "nodeType": "n8n-nodes-base.awstextract",
21657
+ "nodeName": "awssqs",
21658
+ "nodeType": "n8n-nodes-base.awssqs",
21659
21659
  "content": {
21660
- "markdown": "# AWS Textract node\n\nUse the AWS Textract node to automate work in AWS Textract, and integrate AWS Textract with other applications. n8n has built-in support for a wide range of AWS Textract features, including analyzing invoices.\n\nOn this page, you'll find a list of operations the AWS Textract node supports and links to more resources.\n\nCredentials\n\nRefer to [AWS Textract credentials](../../credentials/aws/) for guidance on setting up authentication.\n\nThis node can be used as an AI tool\n\nThis node can be used to enhance the capabilities of an AI agent. When used in this way, many parameters can be set automatically, or with information directed by AI - find out more in the [AI tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/).\n\n## Operations\n\n- Analyze Receipt or Invoice\n\n## Templates and examples\n\n**Extract and store text from chat images using AWS S3**\n\nby Lorena\n\n[View template details](https://n8n.io/workflows/1393-extract-and-store-text-from-chat-images-using-aws-s3/)\n\n**Send a file from S3 to AWS Textract**\n\nby Tom\n\n[View template details](https://n8n.io/workflows/1282-send-a-file-from-s3-to-aws-textract/)\n\n**Summarize invoices with AWS Textract, Google Gemini, and send to Slack**\n\nby Pixcels Themes\n\n[View template details](https://n8n.io/workflows/13803-summarize-invoices-with-aws-textract-google-gemini-and-send-to-slack/)\n\n[Browse AWS Textract integration templates](https://n8n.io/integrations/aws-textract/), or [search all templates](https://n8n.io/workflows/)\n\n## What to do if your operation isn't supported\n\nIf this node doesn't support the operation you want to do, you can use the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to call the service's API.\n\nYou can use the credential you created for this service in the HTTP Request node:\n\n1. In the HTTP Request node, select **Authentication** > **Predefined Credential Type**.\n1. Select the service you want to connect to.\n1. Select your credential.\n\nRefer to [Custom API operations](../../../custom-operations/) for more information.\n",
21661
- "excerpt": "# AWS Textract node Use the AWS Textract node to automate work in AWS Textract, and integrate AWS Textract with other applications. n8n has built-in support for a wide range of AWS Textract features, including analyzing invoices. On this page, you'll find a list of operations the AWS Textract node supports and links to more resources. Credentials Refer to [AWS Textract credentials](../../credentials/aws/) for guidance on setting up authentication. This node can be used as an AI tool This n...",
21660
+ "markdown": "# AWS SQS node\n\nUse the AWS SQS node to automate work in AWS SNS, and integrate AWS SQS with other applications. n8n has built-in support for a wide range of AWS SQS features, including sending messages.\n\nOn this page, you'll find a list of operations the AWS SQS node supports and links to more resources.\n\nCredentials\n\nRefer to [AWS SQS credentials](../../credentials/aws/) for guidance on setting up authentication.\n\n## Operations\n\n- Send a message to a queue.\n\n## Templates and examples\n\n[Browse AWS SQS integration templates](https://n8n.io/integrations/aws-sqs/), or [search all templates](https://n8n.io/workflows/)\n\n## What to do if your operation isn't supported\n\nIf this node doesn't support the operation you want to do, you can use the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to call the service's API.\n\nYou can use the credential you created for this service in the HTTP Request node:\n\n1. In the HTTP Request node, select **Authentication** > **Predefined Credential Type**.\n1. Select the service you want to connect to.\n1. Select your credential.\n\nRefer to [Custom API operations](../../../custom-operations/) for more information.\n",
21661
+ "excerpt": "# AWS SQS node Use the AWS SQS node to automate work in AWS SNS, and integrate AWS SQS with other applications. n8n has built-in support for a wide range of AWS SQS features, including sending messages. On this page, you'll find a list of operations the AWS SQS node supports and links to more resources. Credentials Refer to [AWS SQS credentials](../../credentials/aws/) for guidance on setting up authentication. ## Operations - Send a message to a queue. ## Templates and examples [Browse...",
21662
21662
  "sections": [
21663
21663
  {
21664
- "title": "AWS Textract node",
21664
+ "title": "AWS SQS node",
21665
21665
  "level": 1,
21666
- "content": "Use the AWS Textract node to automate work in AWS Textract, and integrate AWS Textract with other applications. n8n has built-in support for a wide range of AWS Textract features, including analyzing invoices.\n\nOn this page, you'll find a list of operations the AWS Textract node supports and links to more resources.\n\nCredentials\n\nRefer to [AWS Textract credentials](../../credentials/aws/) for guidance on setting up authentication.\n\nThis node can be used as an AI tool\n\nThis node can be used to enhance the capabilities of an AI agent. When used in this way, many parameters can be set automatically, or with information directed by AI - find out more in the [AI tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/)."
21666
+ "content": "Use the AWS SQS node to automate work in AWS SNS, and integrate AWS SQS with other applications. n8n has built-in support for a wide range of AWS SQS features, including sending messages.\n\nOn this page, you'll find a list of operations the AWS SQS node supports and links to more resources.\n\nCredentials\n\nRefer to [AWS SQS credentials](../../credentials/aws/) for guidance on setting up authentication."
21667
21667
  }
21668
21668
  ]
21669
21669
  },
21670
21670
  "metadata": {
21671
21671
  "keywords": [
21672
- "textract",
21673
21672
  "node",
21674
21673
  "operations",
21675
21674
  "templates",
@@ -21686,32 +21685,19 @@
21686
21685
  "what to do if your isn't supported"
21687
21686
  ],
21688
21687
  "codeExamples": 0,
21689
- "complexity": "intermediate",
21690
- "readingTime": "2 min",
21691
- "contentLength": 2086,
21688
+ "complexity": "beginner",
21689
+ "readingTime": "1 min",
21690
+ "contentLength": 1172,
21692
21691
  "relatedPages": []
21693
21692
  },
21694
21693
  "searchIndex": {
21695
- "fullText": "aws textract # aws textract node\n\nuse the aws textract node to automate work in aws textract, and integrate aws textract with other applications. n8n has built-in support for a wide range of aws textract features, including analyzing invoices.\n\non this page, you'll find a list of operations the aws textract node supports and links to more resources.\n\ncredentials\n\nrefer to [aws textract credentials](../../credentials/aws/) for guidance on setting up authentication.\n\nthis node can be used as an ai tool\n\nthis node can be used to enhance the capabilities of an ai agent. when used in this way, many parameters can be set automatically, or with information directed by ai - find out more in the [ai tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/).\n\n## operations\n\n- analyze receipt or invoice\n\n## templates and examples\n\n**extract and store text from chat images using aws s3**\n\nby lorena\n\n[view template details](https://n8n.io/workflows/1393-extract-and-store-text-from-chat-images-using-aws-s3/)\n\n**send a file from s3 to aws textract**\n\nby tom\n\n[view template details](https://n8n.io/workflows/1282-send-a-file-from-s3-to-aws-textract/)\n\n**summarize invoices with aws textract, google gemini, and send to slack**\n\nby pixcels themes\n\n[view template details](https://n8n.io/workflows/13803-summarize-invoices-with-aws-textract-google-gemini-and-send-to-slack/)\n\n[browse aws textract integration templates](https://n8n.io/integrations/aws-textract/), or [search all templates](https://n8n.io/workflows/)\n\n## what to do if your operation isn't supported\n\nif this node doesn't support the operation you want to do, you can use the [http request node](../../core-nodes/n8n-nodes-base.httprequest/) to call the service's api.\n\nyou can use the credential you created for this service in the http request node:\n\n1. in the http request node, select **authentication** > **predefined credential type**.\n1. select the service you want to connect to.\n1. select your credential.\n\nrefer to [custom api operations](../../../custom-operations/) for more information.\n aws textract node",
21694
+ "fullText": "aws sqs # aws sqs node\n\nuse the aws sqs node to automate work in aws sns, and integrate aws sqs with other applications. n8n has built-in support for a wide range of aws sqs features, including sending messages.\n\non this page, you'll find a list of operations the aws sqs node supports and links to more resources.\n\ncredentials\n\nrefer to [aws sqs credentials](../../credentials/aws/) for guidance on setting up authentication.\n\n## operations\n\n- send a message to a queue.\n\n## templates and examples\n\n[browse aws sqs integration templates](https://n8n.io/integrations/aws-sqs/), or [search all templates](https://n8n.io/workflows/)\n\n## what to do if your operation isn't supported\n\nif this node doesn't support the operation you want to do, you can use the [http request node](../../core-nodes/n8n-nodes-base.httprequest/) to call the service's api.\n\nyou can use the credential you created for this service in the http request node:\n\n1. in the http request node, select **authentication** > **predefined credential type**.\n1. select the service you want to connect to.\n1. select your credential.\n\nrefer to [custom api operations](../../../custom-operations/) for more information.\n aws sqs node",
21696
21695
  "importantTerms": [
21697
- "textract",
21698
21696
  "node",
21699
- "this",
21700
- "https",
21701
- "with",
21702
21697
  "operations",
21703
- "from",
21704
- "workflows",
21705
- "send",
21706
- "invoices",
21707
- "more",
21698
+ "this",
21708
21699
  "credentials",
21709
- "used",
21710
- "using",
21711
21700
  "templates",
21712
- "view",
21713
- "template",
21714
- "details",
21715
21701
  "http",
21716
21702
  "request",
21717
21703
  "service",
@@ -21722,26 +21708,27 @@
21722
21708
  },
21723
21709
  {
21724
21710
  "id": "page-0257",
21725
- "title": "AWS SQS",
21726
- "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.awssqs/index.md",
21727
- "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.awssqs/index.md",
21711
+ "title": "AWS Textract",
21712
+ "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.awstextract/index.md",
21713
+ "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.awstextract/index.md",
21728
21714
  "category": "integrations",
21729
21715
  "subcategory": "app-nodes",
21730
- "nodeName": "awssqs",
21731
- "nodeType": "n8n-nodes-base.awssqs",
21716
+ "nodeName": "awstextract",
21717
+ "nodeType": "n8n-nodes-base.awstextract",
21732
21718
  "content": {
21733
- "markdown": "# AWS SQS node\n\nUse the AWS SQS node to automate work in AWS SNS, and integrate AWS SQS with other applications. n8n has built-in support for a wide range of AWS SQS features, including sending messages.\n\nOn this page, you'll find a list of operations the AWS SQS node supports and links to more resources.\n\nCredentials\n\nRefer to [AWS SQS credentials](../../credentials/aws/) for guidance on setting up authentication.\n\n## Operations\n\n- Send a message to a queue.\n\n## Templates and examples\n\n[Browse AWS SQS integration templates](https://n8n.io/integrations/aws-sqs/), or [search all templates](https://n8n.io/workflows/)\n\n## What to do if your operation isn't supported\n\nIf this node doesn't support the operation you want to do, you can use the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to call the service's API.\n\nYou can use the credential you created for this service in the HTTP Request node:\n\n1. In the HTTP Request node, select **Authentication** > **Predefined Credential Type**.\n1. Select the service you want to connect to.\n1. Select your credential.\n\nRefer to [Custom API operations](../../../custom-operations/) for more information.\n",
21734
- "excerpt": "# AWS SQS node Use the AWS SQS node to automate work in AWS SNS, and integrate AWS SQS with other applications. n8n has built-in support for a wide range of AWS SQS features, including sending messages. On this page, you'll find a list of operations the AWS SQS node supports and links to more resources. Credentials Refer to [AWS SQS credentials](../../credentials/aws/) for guidance on setting up authentication. ## Operations - Send a message to a queue. ## Templates and examples [Browse...",
21719
+ "markdown": "# AWS Textract node\n\nUse the AWS Textract node to automate work in AWS Textract, and integrate AWS Textract with other applications. n8n has built-in support for a wide range of AWS Textract features, including analyzing invoices.\n\nOn this page, you'll find a list of operations the AWS Textract node supports and links to more resources.\n\nCredentials\n\nRefer to [AWS Textract credentials](../../credentials/aws/) for guidance on setting up authentication.\n\nThis node can be used as an AI tool\n\nThis node can be used to enhance the capabilities of an AI agent. When used in this way, many parameters can be set automatically, or with information directed by AI - find out more in the [AI tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/).\n\n## Operations\n\n- Analyze Receipt or Invoice\n\n## Templates and examples\n\n**Extract and store text from chat images using AWS S3**\n\nby Lorena\n\n[View template details](https://n8n.io/workflows/1393-extract-and-store-text-from-chat-images-using-aws-s3/)\n\n**Send a file from S3 to AWS Textract**\n\nby Tom\n\n[View template details](https://n8n.io/workflows/1282-send-a-file-from-s3-to-aws-textract/)\n\n**Summarize invoices with AWS Textract, Google Gemini, and send to Slack**\n\nby Pixcels Themes\n\n[View template details](https://n8n.io/workflows/13803-summarize-invoices-with-aws-textract-google-gemini-and-send-to-slack/)\n\n[Browse AWS Textract integration templates](https://n8n.io/integrations/aws-textract/), or [search all templates](https://n8n.io/workflows/)\n\n## What to do if your operation isn't supported\n\nIf this node doesn't support the operation you want to do, you can use the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to call the service's API.\n\nYou can use the credential you created for this service in the HTTP Request node:\n\n1. In the HTTP Request node, select **Authentication** > **Predefined Credential Type**.\n1. Select the service you want to connect to.\n1. Select your credential.\n\nRefer to [Custom API operations](../../../custom-operations/) for more information.\n",
21720
+ "excerpt": "# AWS Textract node Use the AWS Textract node to automate work in AWS Textract, and integrate AWS Textract with other applications. n8n has built-in support for a wide range of AWS Textract features, including analyzing invoices. On this page, you'll find a list of operations the AWS Textract node supports and links to more resources. Credentials Refer to [AWS Textract credentials](../../credentials/aws/) for guidance on setting up authentication. This node can be used as an AI tool This n...",
21735
21721
  "sections": [
21736
21722
  {
21737
- "title": "AWS SQS node",
21723
+ "title": "AWS Textract node",
21738
21724
  "level": 1,
21739
- "content": "Use the AWS SQS node to automate work in AWS SNS, and integrate AWS SQS with other applications. n8n has built-in support for a wide range of AWS SQS features, including sending messages.\n\nOn this page, you'll find a list of operations the AWS SQS node supports and links to more resources.\n\nCredentials\n\nRefer to [AWS SQS credentials](../../credentials/aws/) for guidance on setting up authentication."
21725
+ "content": "Use the AWS Textract node to automate work in AWS Textract, and integrate AWS Textract with other applications. n8n has built-in support for a wide range of AWS Textract features, including analyzing invoices.\n\nOn this page, you'll find a list of operations the AWS Textract node supports and links to more resources.\n\nCredentials\n\nRefer to [AWS Textract credentials](../../credentials/aws/) for guidance on setting up authentication.\n\nThis node can be used as an AI tool\n\nThis node can be used to enhance the capabilities of an AI agent. When used in this way, many parameters can be set automatically, or with information directed by AI - find out more in the [AI tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/)."
21740
21726
  }
21741
21727
  ]
21742
21728
  },
21743
21729
  "metadata": {
21744
21730
  "keywords": [
21731
+ "textract",
21745
21732
  "node",
21746
21733
  "operations",
21747
21734
  "templates",
@@ -21758,19 +21745,32 @@
21758
21745
  "what to do if your isn't supported"
21759
21746
  ],
21760
21747
  "codeExamples": 0,
21761
- "complexity": "beginner",
21762
- "readingTime": "1 min",
21763
- "contentLength": 1172,
21748
+ "complexity": "intermediate",
21749
+ "readingTime": "2 min",
21750
+ "contentLength": 2086,
21764
21751
  "relatedPages": []
21765
21752
  },
21766
21753
  "searchIndex": {
21767
- "fullText": "aws sqs # aws sqs node\n\nuse the aws sqs node to automate work in aws sns, and integrate aws sqs with other applications. n8n has built-in support for a wide range of aws sqs features, including sending messages.\n\non this page, you'll find a list of operations the aws sqs node supports and links to more resources.\n\ncredentials\n\nrefer to [aws sqs credentials](../../credentials/aws/) for guidance on setting up authentication.\n\n## operations\n\n- send a message to a queue.\n\n## templates and examples\n\n[browse aws sqs integration templates](https://n8n.io/integrations/aws-sqs/), or [search all templates](https://n8n.io/workflows/)\n\n## what to do if your operation isn't supported\n\nif this node doesn't support the operation you want to do, you can use the [http request node](../../core-nodes/n8n-nodes-base.httprequest/) to call the service's api.\n\nyou can use the credential you created for this service in the http request node:\n\n1. in the http request node, select **authentication** > **predefined credential type**.\n1. select the service you want to connect to.\n1. select your credential.\n\nrefer to [custom api operations](../../../custom-operations/) for more information.\n aws sqs node",
21754
+ "fullText": "aws textract # aws textract node\n\nuse the aws textract node to automate work in aws textract, and integrate aws textract with other applications. n8n has built-in support for a wide range of aws textract features, including analyzing invoices.\n\non this page, you'll find a list of operations the aws textract node supports and links to more resources.\n\ncredentials\n\nrefer to [aws textract credentials](../../credentials/aws/) for guidance on setting up authentication.\n\nthis node can be used as an ai tool\n\nthis node can be used to enhance the capabilities of an ai agent. when used in this way, many parameters can be set automatically, or with information directed by ai - find out more in the [ai tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/).\n\n## operations\n\n- analyze receipt or invoice\n\n## templates and examples\n\n**extract and store text from chat images using aws s3**\n\nby lorena\n\n[view template details](https://n8n.io/workflows/1393-extract-and-store-text-from-chat-images-using-aws-s3/)\n\n**send a file from s3 to aws textract**\n\nby tom\n\n[view template details](https://n8n.io/workflows/1282-send-a-file-from-s3-to-aws-textract/)\n\n**summarize invoices with aws textract, google gemini, and send to slack**\n\nby pixcels themes\n\n[view template details](https://n8n.io/workflows/13803-summarize-invoices-with-aws-textract-google-gemini-and-send-to-slack/)\n\n[browse aws textract integration templates](https://n8n.io/integrations/aws-textract/), or [search all templates](https://n8n.io/workflows/)\n\n## what to do if your operation isn't supported\n\nif this node doesn't support the operation you want to do, you can use the [http request node](../../core-nodes/n8n-nodes-base.httprequest/) to call the service's api.\n\nyou can use the credential you created for this service in the http request node:\n\n1. in the http request node, select **authentication** > **predefined credential type**.\n1. select the service you want to connect to.\n1. select your credential.\n\nrefer to [custom api operations](../../../custom-operations/) for more information.\n aws textract node",
21768
21755
  "importantTerms": [
21756
+ "textract",
21769
21757
  "node",
21770
- "operations",
21771
21758
  "this",
21759
+ "https",
21760
+ "with",
21761
+ "operations",
21762
+ "from",
21763
+ "workflows",
21764
+ "send",
21765
+ "invoices",
21766
+ "more",
21772
21767
  "credentials",
21768
+ "used",
21769
+ "using",
21773
21770
  "templates",
21771
+ "view",
21772
+ "template",
21773
+ "details",
21774
21774
  "http",
21775
21775
  "request",
21776
21776
  "service",
@@ -57966,6 +57966,58 @@
57966
57966
  },
57967
57967
  {
57968
57968
  "id": "page-0726",
57969
+ "title": "Agile CRM credentials",
57970
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/agilecrm/index.md",
57971
+ "urlPath": "integrations/builtin/credentials/agilecrm/index.md",
57972
+ "category": "other",
57973
+ "subcategory": null,
57974
+ "nodeName": null,
57975
+ "nodeType": null,
57976
+ "content": {
57977
+ "markdown": "# Agile CRM credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Agile CRM](../../app-nodes/n8n-nodes-base.agilecrm/)\n\n## Prerequisites\n\nCreate an [Agile CRM](https://www.agilecrm.com/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Agile CRM's API documentation](https://www.agilecrm.com/api) for more information about working with the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **Email Address** registered with AgileCRM\n- A REST **API Key**: Access your Agile CRM API key through **Admin Settings > Developers & API >** [**REST API key**](https://github.com/agilecrm/rest-api?tab=readme-ov-file#api-key).\n- An Agile CRM **Subdomain** (for example, `n8n`)\n",
57978
+ "excerpt": "# Agile CRM credentials You can use these credentials to authenticate the following nodes: - [Agile CRM](../../app-nodes/n8n-nodes-base.agilecrm/) ## Prerequisites Create an [Agile CRM](https://www.agilecrm.com/) account. ## Supported authentication methods - API key ## Related resources Refer to [Agile CRM's API documentation](https://www.agilecrm.com/api) for more information about working with the service. ## Using API key To configure this credential, you'll need: - An **Email Add...",
57979
+ "sections": [
57980
+ {
57981
+ "title": "Agile CRM credentials",
57982
+ "level": 1,
57983
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [Agile CRM](../../app-nodes/n8n-nodes-base.agilecrm/)"
57984
+ }
57985
+ ]
57986
+ },
57987
+ "metadata": {
57988
+ "keywords": [
57989
+ "agile",
57990
+ "credentials",
57991
+ "prerequisites",
57992
+ "supported",
57993
+ "authentication",
57994
+ "methods",
57995
+ "related",
57996
+ "resources",
57997
+ "using"
57998
+ ],
57999
+ "useCases": [],
58000
+ "operations": [],
58001
+ "codeExamples": 0,
58002
+ "complexity": "beginner",
58003
+ "readingTime": "1 min",
58004
+ "contentLength": 767,
58005
+ "relatedPages": []
58006
+ },
58007
+ "searchIndex": {
58008
+ "fullText": "agile crm credentials # agile crm credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [agile crm](../../app-nodes/n8n-nodes-base.agilecrm/)\n\n## prerequisites\n\ncreate an [agile crm](https://www.agilecrm.com/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [agile crm's api documentation](https://www.agilecrm.com/api) for more information about working with the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **email address** registered with agilecrm\n- a rest **api key**: access your agile crm api key through **admin settings > developers & api >** [**rest api key**](https://github.com/agilecrm/rest-api?tab=readme-ov-file#api-key).\n- an agile crm **subdomain** (for example, `n8n`)\n agile crm credentials",
58009
+ "importantTerms": [
58010
+ "agile",
58011
+ "agilecrm",
58012
+ "credentials",
58013
+ "nodes",
58014
+ "https",
58015
+ "rest"
58016
+ ]
58017
+ }
58018
+ },
58019
+ {
58020
+ "id": "page-0727",
57969
58021
  "title": "Airtable credentials",
57970
58022
  "url": "https://docs.n8n.io/integrations/builtin/credentials/airtable/index.md",
57971
58023
  "urlPath": "integrations/builtin/credentials/airtable/index.md",
@@ -58056,58 +58108,6 @@
58056
58108
  ]
58057
58109
  }
58058
58110
  },
58059
- {
58060
- "id": "page-0727",
58061
- "title": "Agile CRM credentials",
58062
- "url": "https://docs.n8n.io/integrations/builtin/credentials/agilecrm/index.md",
58063
- "urlPath": "integrations/builtin/credentials/agilecrm/index.md",
58064
- "category": "other",
58065
- "subcategory": null,
58066
- "nodeName": null,
58067
- "nodeType": null,
58068
- "content": {
58069
- "markdown": "# Agile CRM credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Agile CRM](../../app-nodes/n8n-nodes-base.agilecrm/)\n\n## Prerequisites\n\nCreate an [Agile CRM](https://www.agilecrm.com/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Agile CRM's API documentation](https://www.agilecrm.com/api) for more information about working with the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **Email Address** registered with AgileCRM\n- A REST **API Key**: Access your Agile CRM API key through **Admin Settings > Developers & API >** [**REST API key**](https://github.com/agilecrm/rest-api?tab=readme-ov-file#api-key).\n- An Agile CRM **Subdomain** (for example, `n8n`)\n",
58070
- "excerpt": "# Agile CRM credentials You can use these credentials to authenticate the following nodes: - [Agile CRM](../../app-nodes/n8n-nodes-base.agilecrm/) ## Prerequisites Create an [Agile CRM](https://www.agilecrm.com/) account. ## Supported authentication methods - API key ## Related resources Refer to [Agile CRM's API documentation](https://www.agilecrm.com/api) for more information about working with the service. ## Using API key To configure this credential, you'll need: - An **Email Add...",
58071
- "sections": [
58072
- {
58073
- "title": "Agile CRM credentials",
58074
- "level": 1,
58075
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [Agile CRM](../../app-nodes/n8n-nodes-base.agilecrm/)"
58076
- }
58077
- ]
58078
- },
58079
- "metadata": {
58080
- "keywords": [
58081
- "agile",
58082
- "credentials",
58083
- "prerequisites",
58084
- "supported",
58085
- "authentication",
58086
- "methods",
58087
- "related",
58088
- "resources",
58089
- "using"
58090
- ],
58091
- "useCases": [],
58092
- "operations": [],
58093
- "codeExamples": 0,
58094
- "complexity": "beginner",
58095
- "readingTime": "1 min",
58096
- "contentLength": 767,
58097
- "relatedPages": []
58098
- },
58099
- "searchIndex": {
58100
- "fullText": "agile crm credentials # agile crm credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [agile crm](../../app-nodes/n8n-nodes-base.agilecrm/)\n\n## prerequisites\n\ncreate an [agile crm](https://www.agilecrm.com/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [agile crm's api documentation](https://www.agilecrm.com/api) for more information about working with the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **email address** registered with agilecrm\n- a rest **api key**: access your agile crm api key through **admin settings > developers & api >** [**rest api key**](https://github.com/agilecrm/rest-api?tab=readme-ov-file#api-key).\n- an agile crm **subdomain** (for example, `n8n`)\n agile crm credentials",
58101
- "importantTerms": [
58102
- "agile",
58103
- "agilecrm",
58104
- "credentials",
58105
- "nodes",
58106
- "https",
58107
- "rest"
58108
- ]
58109
- }
58110
- },
58111
58111
  {
58112
58112
  "id": "page-0728",
58113
58113
  "title": "Airtop credentials",
@@ -72745,6 +72745,58 @@
72745
72745
  },
72746
72746
  {
72747
72747
  "id": "page-0959",
72748
+ "title": "seven credentials",
72749
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/sms77/index.md",
72750
+ "urlPath": "integrations/builtin/credentials/sms77/index.md",
72751
+ "category": "other",
72752
+ "subcategory": null,
72753
+ "nodeName": null,
72754
+ "nodeType": null,
72755
+ "content": {
72756
+ "markdown": "# seven credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [seven](../../app-nodes/n8n-nodes-base.sms77/)\n\n## Prerequisites\n\nCreate a [seven](https://www.seven.io/en) developer account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [seven's API documentation](https://docs.seven.io/en) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API key**: Go to **Account > Developer >** [**API Keys**](https://app.seven.io/developer#create-api-key) to create an API key. Refer to [API First Steps](https://docs.seven.io/en/rest-api/first-steps) for more information.\n",
72757
+ "excerpt": "# seven credentials You can use these credentials to authenticate the following nodes: - [seven](../../app-nodes/n8n-nodes-base.sms77/) ## Prerequisites Create a [seven](https://www.seven.io/en) developer account. ## Supported authentication methods - API key ## Related resources Refer to [seven's API documentation](https://docs.seven.io/en) for more information about the service. ## Using API key To configure this credential, you'll need: - An **API key**: Go to **Account > Developer...",
72758
+ "sections": [
72759
+ {
72760
+ "title": "seven credentials",
72761
+ "level": 1,
72762
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [seven](../../app-nodes/n8n-nodes-base.sms77/)"
72763
+ }
72764
+ ]
72765
+ },
72766
+ "metadata": {
72767
+ "keywords": [
72768
+ "seven",
72769
+ "credentials",
72770
+ "prerequisites",
72771
+ "supported",
72772
+ "authentication",
72773
+ "methods",
72774
+ "related",
72775
+ "resources",
72776
+ "using"
72777
+ ],
72778
+ "useCases": [],
72779
+ "operations": [],
72780
+ "codeExamples": 0,
72781
+ "complexity": "beginner",
72782
+ "readingTime": "1 min",
72783
+ "contentLength": 685,
72784
+ "relatedPages": []
72785
+ },
72786
+ "searchIndex": {
72787
+ "fullText": "seven credentials # seven credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [seven](../../app-nodes/n8n-nodes-base.sms77/)\n\n## prerequisites\n\ncreate a [seven](https://www.seven.io/en) developer account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [seven's api documentation](https://docs.seven.io/en) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**: go to **account > developer >** [**api keys**](https://app.seven.io/developer#create-api-key) to create an api key. refer to [api first steps](https://docs.seven.io/en/rest-api/first-steps) for more information.\n seven credentials",
72788
+ "importantTerms": [
72789
+ "seven",
72790
+ "credentials",
72791
+ "https",
72792
+ "nodes",
72793
+ "create",
72794
+ "developer"
72795
+ ]
72796
+ }
72797
+ },
72798
+ {
72799
+ "id": "page-0960",
72748
72800
  "title": "Snowflake credentials",
72749
72801
  "url": "https://docs.n8n.io/integrations/builtin/credentials/snowflake/index.md",
72750
72802
  "urlPath": "integrations/builtin/credentials/snowflake/index.md",
@@ -72826,58 +72878,6 @@
72826
72878
  ]
72827
72879
  }
72828
72880
  },
72829
- {
72830
- "id": "page-0960",
72831
- "title": "seven credentials",
72832
- "url": "https://docs.n8n.io/integrations/builtin/credentials/sms77/index.md",
72833
- "urlPath": "integrations/builtin/credentials/sms77/index.md",
72834
- "category": "other",
72835
- "subcategory": null,
72836
- "nodeName": null,
72837
- "nodeType": null,
72838
- "content": {
72839
- "markdown": "# seven credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [seven](../../app-nodes/n8n-nodes-base.sms77/)\n\n## Prerequisites\n\nCreate a [seven](https://www.seven.io/en) developer account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [seven's API documentation](https://docs.seven.io/en) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API key**: Go to **Account > Developer >** [**API Keys**](https://app.seven.io/developer#create-api-key) to create an API key. Refer to [API First Steps](https://docs.seven.io/en/rest-api/first-steps) for more information.\n",
72840
- "excerpt": "# seven credentials You can use these credentials to authenticate the following nodes: - [seven](../../app-nodes/n8n-nodes-base.sms77/) ## Prerequisites Create a [seven](https://www.seven.io/en) developer account. ## Supported authentication methods - API key ## Related resources Refer to [seven's API documentation](https://docs.seven.io/en) for more information about the service. ## Using API key To configure this credential, you'll need: - An **API key**: Go to **Account > Developer...",
72841
- "sections": [
72842
- {
72843
- "title": "seven credentials",
72844
- "level": 1,
72845
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [seven](../../app-nodes/n8n-nodes-base.sms77/)"
72846
- }
72847
- ]
72848
- },
72849
- "metadata": {
72850
- "keywords": [
72851
- "seven",
72852
- "credentials",
72853
- "prerequisites",
72854
- "supported",
72855
- "authentication",
72856
- "methods",
72857
- "related",
72858
- "resources",
72859
- "using"
72860
- ],
72861
- "useCases": [],
72862
- "operations": [],
72863
- "codeExamples": 0,
72864
- "complexity": "beginner",
72865
- "readingTime": "1 min",
72866
- "contentLength": 685,
72867
- "relatedPages": []
72868
- },
72869
- "searchIndex": {
72870
- "fullText": "seven credentials # seven credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [seven](../../app-nodes/n8n-nodes-base.sms77/)\n\n## prerequisites\n\ncreate a [seven](https://www.seven.io/en) developer account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [seven's api documentation](https://docs.seven.io/en) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**: go to **account > developer >** [**api keys**](https://app.seven.io/developer#create-api-key) to create an api key. refer to [api first steps](https://docs.seven.io/en/rest-api/first-steps) for more information.\n seven credentials",
72871
- "importantTerms": [
72872
- "seven",
72873
- "credentials",
72874
- "https",
72875
- "nodes",
72876
- "create",
72877
- "developer"
72878
- ]
72879
- }
72880
- },
72881
72881
  {
72882
72882
  "id": "page-0961",
72883
72883
  "title": "SolarWinds IPAM credentials",
@@ -76322,27 +76322,27 @@
76322
76322
  },
76323
76323
  {
76324
76324
  "id": "page-1015",
76325
- "title": "Xero credentials",
76326
- "url": "https://docs.n8n.io/integrations/builtin/credentials/xero/index.md",
76327
- "urlPath": "integrations/builtin/credentials/xero/index.md",
76325
+ "title": "Xata credentials",
76326
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/xata/index.md",
76327
+ "urlPath": "integrations/builtin/credentials/xata/index.md",
76328
76328
  "category": "other",
76329
76329
  "subcategory": null,
76330
76330
  "nodeName": null,
76331
76331
  "nodeType": null,
76332
76332
  "content": {
76333
- "markdown": "# Xero credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Xero](../../app-nodes/n8n-nodes-base.xero/)\n\n## Prerequisites\n\nCreate a [Xero](https://www.xero.com/) account.\n\n## Supported authentication methods\n\n- OAuth2\n\n## Related resources\n\nRefer to [Zero's API documentation](https://developer.xero.com/documentation/api/accounting/overview) for more information about the service.\n\n## Using OAuth2\n\nTo configure this credential, you'll need:\n\n- A **Client ID**: Generated when you create a new app for a custom connection.\n- A **Client Secret**: Generated when you create a new app for a custom connection.\n\nTo generate your Client ID and Client Secret, [create an OAuth2 custom connection app](https://developer.xero.com/documentation/guides/oauth2/custom-connections/) in your Xero developer portal [**My Apps**](https://developer.xero.com/app/manage).\n\nUse these settings for your app:\n\nXero App Name\n\nXero doesn't support app instances within the Xero Developer Centre that contain `n8n` in their name.\n\n- Select **Web app** as the **Integration Type**.\n- For the **Company or Application URL**, enter the URL of your n8n server or reverse proxy address. For cloud users, for example, this is: `https://your-username.app.n8n.cloud/`.\n- Copy the **OAuth Redirect URL** from n8n and add it as an **OAuth 2.0 redirect URI** in your app.\n- Select appropriate **scopes** for your app. Refer to [OAuth2 Scopes](https://developer.xero.com/documentation/guides/oauth2/scopes/) for more information.\n - To use all functionality in the [Xero](../../app-nodes/n8n-nodes-base.xero/) node, add the `accounting.contacts` and `accounting.transactions` scopes.\n\nRefer to Xero's [OAuth Custom Connections](https://developer.xero.com/documentation/guides/oauth2/custom-connections) documentation for more information.\n",
76334
- "excerpt": "# Xero credentials You can use these credentials to authenticate the following nodes: - [Xero](../../app-nodes/n8n-nodes-base.xero/) ## Prerequisites Create a [Xero](https://www.xero.com/) account. ## Supported authentication methods - OAuth2 ## Related resources Refer to [Zero's API documentation](https://developer.xero.com/documentation/api/accounting/overview) for more information about the service. ## Using OAuth2 To configure this credential, you'll need: - A **Client ID**: Gener...",
76333
+ "markdown": "# Xata credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Xata](../../cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata/)\n\n## Prerequisites\n\nCreate a [Xata](https://xata.io/) database or an account on an existing database.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Xata's documentation](https://xata.io/docs/rest-api/authentication) for more information about the service.\n\nView n8n's [Advanced AI](../../../../advanced-ai/) documentation.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- The **Database Endpoint**: The Workspace API requires that you identify the database you're requesting information from using this format: `https://{workspace-display-name}-{workspace-id}.{region}.xata.sh/db/{dbname}`. Refer to [Workspace API](https://xata.io/docs/rest-api#workspace-api) for more information.\n - `{workspace-display-name}`: The workspace display name is an optional identifier you can include in your Database Endpoint. The API ignores it, but including it can make it easier to figure out which workspace this database is in if you're saving multiple credentials.\n - `{workspace-id}`: The unique ID of the workspace, 6 alphanumeric characters.\n - `{region}`: The hosting region for the database. This value must match the database region configuration.\n - `{dbname}`: The name of the database you're interacting with.\n- A **Branch**: Enter the name of the GitHub branch for your database.\n- An **API Key**: To generate an API key, go to [**Account Settings**](https://app.xata.io/settings) and select **+ Add a key**. Refer to [Generate an API Key](https://xata.io/docs/rest-api#generate-an-api-key) for more information.\n",
76334
+ "excerpt": "# Xata credentials You can use these credentials to authenticate the following nodes: - [Xata](../../cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata/) ## Prerequisites Create a [Xata](https://xata.io/) database or an account on an existing database. ## Supported authentication methods - API key ## Related resources Refer to [Xata's documentation](https://xata.io/docs/rest-api/authentication) for more information about the service. View n8n's [Advanced AI](../../../../advanced-ai/...",
76335
76335
  "sections": [
76336
76336
  {
76337
- "title": "Xero credentials",
76337
+ "title": "Xata credentials",
76338
76338
  "level": 1,
76339
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [Xero](../../app-nodes/n8n-nodes-base.xero/)"
76339
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [Xata](../../cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata/)"
76340
76340
  }
76341
76341
  ]
76342
76342
  },
76343
76343
  "metadata": {
76344
76344
  "keywords": [
76345
- "xero",
76345
+ "xata",
76346
76346
  "credentials",
76347
76347
  "prerequisites",
76348
76348
  "supported",
@@ -76350,65 +76350,61 @@
76350
76350
  "methods",
76351
76351
  "related",
76352
76352
  "resources",
76353
- "using",
76354
- "oauth2"
76353
+ "using"
76355
76354
  ],
76356
76355
  "useCases": [],
76357
76356
  "operations": [],
76358
76357
  "codeExamples": 0,
76359
76358
  "complexity": "beginner",
76360
76359
  "readingTime": "2 min",
76361
- "contentLength": 1838,
76360
+ "contentLength": 1727,
76362
76361
  "relatedPages": []
76363
76362
  },
76364
76363
  "searchIndex": {
76365
- "fullText": "xero credentials # xero credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [xero](../../app-nodes/n8n-nodes-base.xero/)\n\n## prerequisites\n\ncreate a [xero](https://www.xero.com/) account.\n\n## supported authentication methods\n\n- oauth2\n\n## related resources\n\nrefer to [zero's api documentation](https://developer.xero.com/documentation/api/accounting/overview) for more information about the service.\n\n## using oauth2\n\nto configure this credential, you'll need:\n\n- a **client id**: generated when you create a new app for a custom connection.\n- a **client secret**: generated when you create a new app for a custom connection.\n\nto generate your client id and client secret, [create an oauth2 custom connection app](https://developer.xero.com/documentation/guides/oauth2/custom-connections/) in your xero developer portal [**my apps**](https://developer.xero.com/app/manage).\n\nuse these settings for your app:\n\nxero app name\n\nxero doesn't support app instances within the xero developer centre that contain `n8n` in their name.\n\n- select **web app** as the **integration type**.\n- for the **company or application url**, enter the url of your n8n server or reverse proxy address. for cloud users, for example, this is: `https://your-username.app.n8n.cloud/`.\n- copy the **oauth redirect url** from n8n and add it as an **oauth 2.0 redirect uri** in your app.\n- select appropriate **scopes** for your app. refer to [oauth2 scopes](https://developer.xero.com/documentation/guides/oauth2/scopes/) for more information.\n - to use all functionality in the [xero](../../app-nodes/n8n-nodes-base.xero/) node, add the `accounting.contacts` and `accounting.transactions` scopes.\n\nrefer to xero's [oauth custom connections](https://developer.xero.com/documentation/guides/oauth2/custom-connections) documentation for more information.\n xero credentials",
76364
+ "fullText": "xata credentials # xata credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [xata](../../cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata/)\n\n## prerequisites\n\ncreate a [xata](https://xata.io/) database or an account on an existing database.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [xata's documentation](https://xata.io/docs/rest-api/authentication) for more information about the service.\n\nview n8n's [advanced ai](../../../../advanced-ai/) documentation.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- the **database endpoint**: the workspace api requires that you identify the database you're requesting information from using this format: `https://{workspace-display-name}-{workspace-id}.{region}.xata.sh/db/{dbname}`. refer to [workspace api](https://xata.io/docs/rest-api#workspace-api) for more information.\n - `{workspace-display-name}`: the workspace display name is an optional identifier you can include in your database endpoint. the api ignores it, but including it can make it easier to figure out which workspace this database is in if you're saving multiple credentials.\n - `{workspace-id}`: the unique id of the workspace, 6 alphanumeric characters.\n - `{region}`: the hosting region for the database. this value must match the database region configuration.\n - `{dbname}`: the name of the database you're interacting with.\n- a **branch**: enter the name of the github branch for your database.\n- an **api key**: to generate an api key, go to [**account settings**](https://app.xata.io/settings) and select **+ add a key**. refer to [generate an api key](https://xata.io/docs/rest-api#generate-an-api-key) for more information.\n xata credentials",
76366
76365
  "importantTerms": [
76367
- "xero",
76366
+ "xata",
76367
+ "database",
76368
+ "workspace",
76368
76369
  "https",
76369
- "developer",
76370
- "your",
76371
- "documentation",
76372
- "custom",
76373
- "nodes",
76374
76370
  "credentials",
76375
- "create",
76376
- "client",
76377
- "scopes",
76371
+ "name",
76372
+ "nodes",
76373
+ "information",
76374
+ "this",
76375
+ "region",
76378
76376
  "refer",
76379
- "accounting",
76377
+ "docs",
76378
+ "rest",
76380
76379
  "more",
76381
- "information",
76382
- "connection",
76383
- "guides",
76384
- "connections",
76385
- "oauth"
76380
+ "display",
76381
+ "generate"
76386
76382
  ]
76387
76383
  }
76388
76384
  },
76389
76385
  {
76390
76386
  "id": "page-1016",
76391
- "title": "Xata credentials",
76392
- "url": "https://docs.n8n.io/integrations/builtin/credentials/xata/index.md",
76393
- "urlPath": "integrations/builtin/credentials/xata/index.md",
76387
+ "title": "Xero credentials",
76388
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/xero/index.md",
76389
+ "urlPath": "integrations/builtin/credentials/xero/index.md",
76394
76390
  "category": "other",
76395
76391
  "subcategory": null,
76396
76392
  "nodeName": null,
76397
76393
  "nodeType": null,
76398
76394
  "content": {
76399
- "markdown": "# Xata credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Xata](../../cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata/)\n\n## Prerequisites\n\nCreate a [Xata](https://xata.io/) database or an account on an existing database.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Xata's documentation](https://xata.io/docs/rest-api/authentication) for more information about the service.\n\nView n8n's [Advanced AI](../../../../advanced-ai/) documentation.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- The **Database Endpoint**: The Workspace API requires that you identify the database you're requesting information from using this format: `https://{workspace-display-name}-{workspace-id}.{region}.xata.sh/db/{dbname}`. Refer to [Workspace API](https://xata.io/docs/rest-api#workspace-api) for more information.\n - `{workspace-display-name}`: The workspace display name is an optional identifier you can include in your Database Endpoint. The API ignores it, but including it can make it easier to figure out which workspace this database is in if you're saving multiple credentials.\n - `{workspace-id}`: The unique ID of the workspace, 6 alphanumeric characters.\n - `{region}`: The hosting region for the database. This value must match the database region configuration.\n - `{dbname}`: The name of the database you're interacting with.\n- A **Branch**: Enter the name of the GitHub branch for your database.\n- An **API Key**: To generate an API key, go to [**Account Settings**](https://app.xata.io/settings) and select **+ Add a key**. Refer to [Generate an API Key](https://xata.io/docs/rest-api#generate-an-api-key) for more information.\n",
76400
- "excerpt": "# Xata credentials You can use these credentials to authenticate the following nodes: - [Xata](../../cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata/) ## Prerequisites Create a [Xata](https://xata.io/) database or an account on an existing database. ## Supported authentication methods - API key ## Related resources Refer to [Xata's documentation](https://xata.io/docs/rest-api/authentication) for more information about the service. View n8n's [Advanced AI](../../../../advanced-ai/...",
76395
+ "markdown": "# Xero credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Xero](../../app-nodes/n8n-nodes-base.xero/)\n\n## Prerequisites\n\nCreate a [Xero](https://www.xero.com/) account.\n\n## Supported authentication methods\n\n- OAuth2\n\n## Related resources\n\nRefer to [Zero's API documentation](https://developer.xero.com/documentation/api/accounting/overview) for more information about the service.\n\n## Using OAuth2\n\nTo configure this credential, you'll need:\n\n- A **Client ID**: Generated when you create a new app for a custom connection.\n- A **Client Secret**: Generated when you create a new app for a custom connection.\n\nTo generate your Client ID and Client Secret, [create an OAuth2 custom connection app](https://developer.xero.com/documentation/guides/oauth2/custom-connections/) in your Xero developer portal [**My Apps**](https://developer.xero.com/app/manage).\n\nUse these settings for your app:\n\nXero App Name\n\nXero doesn't support app instances within the Xero Developer Centre that contain `n8n` in their name.\n\n- Select **Web app** as the **Integration Type**.\n- For the **Company or Application URL**, enter the URL of your n8n server or reverse proxy address. For cloud users, for example, this is: `https://your-username.app.n8n.cloud/`.\n- Copy the **OAuth Redirect URL** from n8n and add it as an **OAuth 2.0 redirect URI** in your app.\n- Select appropriate **scopes** for your app. Refer to [OAuth2 Scopes](https://developer.xero.com/documentation/guides/oauth2/scopes/) for more information.\n - To use all functionality in the [Xero](../../app-nodes/n8n-nodes-base.xero/) node, add the `accounting.contacts` and `accounting.transactions` scopes.\n\nRefer to Xero's [OAuth Custom Connections](https://developer.xero.com/documentation/guides/oauth2/custom-connections) documentation for more information.\n",
76396
+ "excerpt": "# Xero credentials You can use these credentials to authenticate the following nodes: - [Xero](../../app-nodes/n8n-nodes-base.xero/) ## Prerequisites Create a [Xero](https://www.xero.com/) account. ## Supported authentication methods - OAuth2 ## Related resources Refer to [Zero's API documentation](https://developer.xero.com/documentation/api/accounting/overview) for more information about the service. ## Using OAuth2 To configure this credential, you'll need: - A **Client ID**: Gener...",
76401
76397
  "sections": [
76402
76398
  {
76403
- "title": "Xata credentials",
76399
+ "title": "Xero credentials",
76404
76400
  "level": 1,
76405
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [Xata](../../cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata/)"
76401
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [Xero](../../app-nodes/n8n-nodes-base.xero/)"
76406
76402
  }
76407
76403
  ]
76408
76404
  },
76409
76405
  "metadata": {
76410
76406
  "keywords": [
76411
- "xata",
76407
+ "xero",
76412
76408
  "credentials",
76413
76409
  "prerequisites",
76414
76410
  "supported",
@@ -76416,35 +76412,39 @@
76416
76412
  "methods",
76417
76413
  "related",
76418
76414
  "resources",
76419
- "using"
76415
+ "using",
76416
+ "oauth2"
76420
76417
  ],
76421
76418
  "useCases": [],
76422
76419
  "operations": [],
76423
76420
  "codeExamples": 0,
76424
76421
  "complexity": "beginner",
76425
76422
  "readingTime": "2 min",
76426
- "contentLength": 1727,
76423
+ "contentLength": 1838,
76427
76424
  "relatedPages": []
76428
76425
  },
76429
76426
  "searchIndex": {
76430
- "fullText": "xata credentials # xata credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [xata](../../cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata/)\n\n## prerequisites\n\ncreate a [xata](https://xata.io/) database or an account on an existing database.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [xata's documentation](https://xata.io/docs/rest-api/authentication) for more information about the service.\n\nview n8n's [advanced ai](../../../../advanced-ai/) documentation.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- the **database endpoint**: the workspace api requires that you identify the database you're requesting information from using this format: `https://{workspace-display-name}-{workspace-id}.{region}.xata.sh/db/{dbname}`. refer to [workspace api](https://xata.io/docs/rest-api#workspace-api) for more information.\n - `{workspace-display-name}`: the workspace display name is an optional identifier you can include in your database endpoint. the api ignores it, but including it can make it easier to figure out which workspace this database is in if you're saving multiple credentials.\n - `{workspace-id}`: the unique id of the workspace, 6 alphanumeric characters.\n - `{region}`: the hosting region for the database. this value must match the database region configuration.\n - `{dbname}`: the name of the database you're interacting with.\n- a **branch**: enter the name of the github branch for your database.\n- an **api key**: to generate an api key, go to [**account settings**](https://app.xata.io/settings) and select **+ add a key**. refer to [generate an api key](https://xata.io/docs/rest-api#generate-an-api-key) for more information.\n xata credentials",
76427
+ "fullText": "xero credentials # xero credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [xero](../../app-nodes/n8n-nodes-base.xero/)\n\n## prerequisites\n\ncreate a [xero](https://www.xero.com/) account.\n\n## supported authentication methods\n\n- oauth2\n\n## related resources\n\nrefer to [zero's api documentation](https://developer.xero.com/documentation/api/accounting/overview) for more information about the service.\n\n## using oauth2\n\nto configure this credential, you'll need:\n\n- a **client id**: generated when you create a new app for a custom connection.\n- a **client secret**: generated when you create a new app for a custom connection.\n\nto generate your client id and client secret, [create an oauth2 custom connection app](https://developer.xero.com/documentation/guides/oauth2/custom-connections/) in your xero developer portal [**my apps**](https://developer.xero.com/app/manage).\n\nuse these settings for your app:\n\nxero app name\n\nxero doesn't support app instances within the xero developer centre that contain `n8n` in their name.\n\n- select **web app** as the **integration type**.\n- for the **company or application url**, enter the url of your n8n server or reverse proxy address. for cloud users, for example, this is: `https://your-username.app.n8n.cloud/`.\n- copy the **oauth redirect url** from n8n and add it as an **oauth 2.0 redirect uri** in your app.\n- select appropriate **scopes** for your app. refer to [oauth2 scopes](https://developer.xero.com/documentation/guides/oauth2/scopes/) for more information.\n - to use all functionality in the [xero](../../app-nodes/n8n-nodes-base.xero/) node, add the `accounting.contacts` and `accounting.transactions` scopes.\n\nrefer to xero's [oauth custom connections](https://developer.xero.com/documentation/guides/oauth2/custom-connections) documentation for more information.\n xero credentials",
76431
76428
  "importantTerms": [
76432
- "xata",
76433
- "database",
76434
- "workspace",
76429
+ "xero",
76435
76430
  "https",
76436
- "credentials",
76437
- "name",
76431
+ "developer",
76432
+ "your",
76433
+ "documentation",
76434
+ "custom",
76438
76435
  "nodes",
76439
- "information",
76440
- "this",
76441
- "region",
76436
+ "credentials",
76437
+ "create",
76438
+ "client",
76439
+ "scopes",
76442
76440
  "refer",
76443
- "docs",
76444
- "rest",
76441
+ "accounting",
76445
76442
  "more",
76446
- "display",
76447
- "generate"
76443
+ "information",
76444
+ "connection",
76445
+ "guides",
76446
+ "connections",
76447
+ "oauth"
76448
76448
  ]
76449
76449
  }
76450
76450
  },
@@ -93853,7 +93853,7 @@
93853
93853
  "page-0018",
93854
93854
  "page-0022",
93855
93855
  "page-0026",
93856
- "page-0027",
93856
+ "page-0028",
93857
93857
  "page-0029",
93858
93858
  "page-0044",
93859
93859
  "page-0051",
@@ -94423,7 +94423,7 @@
94423
94423
  "page-0662",
94424
94424
  "page-0702",
94425
94425
  "page-0721",
94426
- "page-0726",
94426
+ "page-0727",
94427
94427
  "page-0733",
94428
94428
  "page-0736",
94429
94429
  "page-0745",
@@ -95130,7 +95130,7 @@
95130
95130
  "page-0550",
95131
95131
  "page-0556",
95132
95132
  "page-0958",
95133
- "page-0959",
95133
+ "page-0960",
95134
95134
  "page-1125",
95135
95135
  "page-1126",
95136
95136
  "page-1127",
@@ -97994,7 +97994,7 @@
97994
97994
  "page-0014",
97995
97995
  "page-0019",
97996
97996
  "page-0468",
97997
- "page-0726",
97997
+ "page-0727",
97998
97998
  "page-0757",
97999
97999
  "page-0778",
98000
98000
  "page-0788",
@@ -98829,12 +98829,12 @@
98829
98829
  ],
98830
98830
  "differences": [
98831
98831
  "page-0015",
98832
- "page-0028",
98832
+ "page-0027",
98833
98833
  "page-1182"
98834
98834
  ],
98835
98835
  "between": [
98836
98836
  "page-0015",
98837
- "page-0028",
98837
+ "page-0027",
98838
98838
  "page-0043",
98839
98839
  "page-0133",
98840
98840
  "page-0140",
@@ -100487,7 +100487,7 @@
100487
100487
  "agents": [
100488
100488
  "page-0019",
100489
100489
  "page-0022",
100490
- "page-0028",
100490
+ "page-0027",
100491
100491
  "page-0032",
100492
100492
  "page-0040",
100493
100493
  "page-0640"
@@ -101066,7 +101066,7 @@
101066
101066
  "page-0943",
101067
101067
  "page-0955",
101068
101068
  "page-0958",
101069
- "page-0959",
101069
+ "page-0960",
101070
101070
  "page-1062",
101071
101071
  "page-1105",
101072
101072
  "page-1118",
@@ -101117,8 +101117,16 @@
101117
101117
  "inconsistent": [
101118
101118
  "page-0026"
101119
101119
  ],
101120
- "call": [
101120
+ "chains": [
101121
101121
  "page-0027",
101122
+ "page-0033",
101123
+ "page-0040"
101124
+ ],
101125
+ "demonstration": [
101126
+ "page-0027"
101127
+ ],
101128
+ "call": [
101129
+ "page-0028",
101122
101130
  "page-0047",
101123
101131
  "page-0140",
101124
101132
  "page-0209",
@@ -101128,7 +101136,7 @@
101128
101136
  "page-0694"
101129
101137
  ],
101130
101138
  "fetch": [
101131
- "page-0027",
101139
+ "page-0028",
101132
101140
  "page-0333",
101133
101141
  "page-0348",
101134
101142
  "page-0548",
@@ -101147,14 +101155,6 @@
101147
101155
  "page-0719",
101148
101156
  "page-1216"
101149
101157
  ],
101150
- "chains": [
101151
- "page-0028",
101152
- "page-0033",
101153
- "page-0040"
101154
- ],
101155
- "demonstration": [
101156
- "page-0028"
101157
- ],
101158
101158
  "google": [
101159
101159
  "page-0029",
101160
101160
  "page-0043",
@@ -102089,7 +102089,7 @@
102089
102089
  "oauth2": [
102090
102090
  "page-0043",
102091
102091
  "page-0723",
102092
- "page-0726",
102092
+ "page-0727",
102093
102093
  "page-0733",
102094
102094
  "page-0740",
102095
102095
  "page-0746",
@@ -102150,7 +102150,7 @@
102150
102150
  "page-1004",
102151
102151
  "page-1007",
102152
102152
  "page-1011",
102153
- "page-1015",
102153
+ "page-1016",
102154
102154
  "page-1020",
102155
102155
  "page-1022",
102156
102156
  "page-1023",
@@ -102182,7 +102182,7 @@
102182
102182
  "token": [
102183
102183
  "page-0043",
102184
102184
  "page-0618",
102185
- "page-0726",
102185
+ "page-0727",
102186
102186
  "page-0733",
102187
102187
  "page-0743",
102188
102188
  "page-0744",
@@ -104032,7 +104032,7 @@
104032
104032
  "page-0081",
104033
104033
  "page-0491",
104034
104034
  "page-0492",
104035
- "page-0726",
104035
+ "page-0727",
104036
104036
  "page-1042"
104037
104037
  ],
104038
104038
  "orders": [
@@ -104071,7 +104071,7 @@
104071
104071
  "page-0684",
104072
104072
  "page-0691",
104073
104073
  "page-0694",
104074
- "page-0959",
104074
+ "page-0960",
104075
104075
  "page-1042",
104076
104076
  "page-1156",
104077
104077
  "page-1159",
@@ -107219,7 +107219,7 @@
107219
107219
  "password": [
107220
107220
  "page-0205",
107221
107221
  "page-0900",
107222
- "page-0959",
107222
+ "page-0960",
107223
107223
  "page-0961",
107224
107224
  "page-0965",
107225
107225
  "page-1011",
@@ -108340,7 +108340,7 @@
108340
108340
  ],
108341
108341
  "agile": [
108342
108342
  "page-0239",
108343
- "page-0727"
108343
+ "page-0726"
108344
108344
  ],
108345
108345
  "airtop": [
108346
108346
  "page-0240",
@@ -108421,7 +108421,7 @@
108421
108421
  "page-0252"
108422
108422
  ],
108423
108423
  "textract": [
108424
- "page-0256"
108424
+ "page-0257"
108425
108425
  ],
108426
108426
  "transcribe": [
108427
108427
  "page-0258",
@@ -109251,11 +109251,11 @@
109251
109251
  ],
109252
109252
  "seven": [
109253
109253
  "page-0444",
109254
- "page-0960"
109254
+ "page-0959"
109255
109255
  ],
109256
109256
  "snowflake": [
109257
109257
  "page-0445",
109258
- "page-0959"
109258
+ "page-0960"
109259
109259
  ],
109260
109260
  "splunk": [
109261
109261
  "page-0446",
@@ -109438,7 +109438,7 @@
109438
109438
  ],
109439
109439
  "xero": [
109440
109440
  "page-0480",
109441
- "page-1015"
109441
+ "page-1016"
109442
109442
  ],
109443
109443
  "yourls": [
109444
109444
  "page-0481",
@@ -110533,7 +110533,7 @@
110533
110533
  ],
110534
110534
  "xata": [
110535
110535
  "page-0606",
110536
- "page-1016"
110536
+ "page-1015"
110537
110537
  ],
110538
110538
  "selector": [
110539
110539
  "page-0608",
@@ -111575,7 +111575,7 @@
111575
111575
  "page-1105"
111576
111576
  ],
111577
111577
  "pair": [
111578
- "page-0959"
111578
+ "page-0960"
111579
111579
  ],
111580
111580
  "solarwinds": [
111581
111581
  "page-0961",
@@ -114080,10 +114080,10 @@
114080
114080
  "awssns": [
114081
114081
  "page-0255"
114082
114082
  ],
114083
- "awstextract": [
114083
+ "awssqs": [
114084
114084
  "page-0256"
114085
114085
  ],
114086
- "awssqs": [
114086
+ "awstextract": [
114087
114087
  "page-0257"
114088
114088
  ],
114089
114089
  "awstranscribe": [