diff --git a/_snippets/data/data-mapping/item-linking-code-node.md b/_snippets/data/data-mapping/item-linking-code-node.md index b6e480d92..d251990f0 100644 --- a/_snippets/data/data-mapping/item-linking-code-node.md +++ b/_snippets/data/data-mapping/item-linking-code-node.md @@ -16,6 +16,7 @@ To control item linking, set `pairedItem` when returning data. For example, to l "json": { . . . }, + // The index of the input item that generated this output item "pairedItem": 0 } ] diff --git a/_snippets/integrations/builtin/credentials/google/enable-apis.md b/_snippets/integrations/builtin/credentials/google/enable-apis.md index 442e6144c..f26c207e3 100644 --- a/_snippets/integrations/builtin/credentials/google/enable-apis.md +++ b/_snippets/integrations/builtin/credentials/google/enable-apis.md @@ -1,4 +1,11 @@ 1. Access your [Google Cloud Console - Library](https://console.cloud.google.com/apis/library){:target=_blank .external-link}. Make sure you're in the correct project. 1. Search for and select the API(s) you want to enable. For example, for the Gmail node, search for and enable the Gmail API. - + + !!! note "Some integrations need additional APIs" + The following integrations require the Google Drive API, as well as their own API: + + * Google Docs + * Google Sheets + * Google Slides + 1. Select **ENABLE**. diff --git a/_snippets/try-it-out/install-run-n8n.md b/_snippets/try-it-out/install-run-n8n.md index 29f78c55b..3f0d6db3b 100644 --- a/_snippets/try-it-out/install-run-n8n.md +++ b/_snippets/try-it-out/install-run-n8n.md @@ -7,4 +7,4 @@ n8n is available as a [Cloud](/choose-n8n/cloud/) service, [desktop app](/choose 1. [Download for Windows](https://downloads.n8n.io/file/n8n-downloads/n8n-win.zip) or [Download for macOS](https://downloads.n8n.io/file/n8n-downloads/n8n-mac.zip). 2. Once the download finishes, extract the files. 3. Run the installer. It has no configuration steps. -4. Once installation is complete, n8n Desktop opens automatically. There may be a small lag between installation completing and the app opening. +4. Once installation is complete, n8n opens automatically. There may be a small lag between installation completing and the app opening. diff --git a/docs/_redirects b/docs/_redirects index 6b889084b..a583c4c16 100644 --- a/docs/_redirects +++ b/docs/_redirects @@ -1,5 +1,8 @@ /security-audit/ /hosting/security-audit/ -/reference/data-collection/ /privacy-security/privacy/data-collection/ +/reference/data-collection/ /privacy-security/privacy/ + +/integrations/builtin/core-nodes/n8n-nodes-base.readbinaryfile/ /integrations/builtin/core-nodes/n8n-nodes-base.readbinaryfiles/ + /reference/release-notes/ /release-notes/ /integrations/builtin/core-nodes/n8n-nodes-base.htmlextract/ /integrations/builtin/core-nodes/n8n-nodes-base.html/ diff --git a/docs/code-examples/expressions/index.md b/docs/code-examples/expressions/index.md index e75ebecc5..1f22d02e9 100644 --- a/docs/code-examples/expressions/index.md +++ b/docs/code-examples/expressions/index.md @@ -15,8 +15,6 @@ n8n supports two libraries: - [Luxon](https://github.com/moment/luxon/), for working with data and time. - [JMESPath](https://jmespath.org/), for querying JSON. -!!! note "Known issue with optional chaining" - Starting in n8n 0.211.0 there is a known issue when using the [optional chaining operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Optional_chaining){:target=_blank .external-link} in expressions. If you encounter errors, avoid using the operator for now. ## Writing expressions 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 d411c965e..37d2ddd84 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 @@ -22,5 +22,24 @@ If you see this error message: > ERROR: Can't get data for expression under '``' field -You need to supply item linking information yourself, because you have an item linking scenario that n8n can't automatically handle. Refer to [Item linking concepts](/data/data-mapping/data-item-linking/item-linking-concepts/) for a conceptual understanding of item linking, and [Manage item linking in the Code node](/data/data-mapping/data-item-linking/item-linking-code-node/) for detailed guidance on handling item linking. +You need to supply item linking information yourself, because you have an item linking scenario that n8n can't automatically handle. + +To control item linking, set `pairedItem` when returning data. For example, to link to the item at index 0: + +```js +[ + { + "json": { + . . . + }, + // The index of the input item that generated this output item + "pairedItem": 0 + } +] +``` + + +Refer to [Item linking concepts](/data/data-mapping/data-item-linking/item-linking-concepts/) for a conceptual understanding of item linking, and [Manage item linking in the Code node](/data/data-mapping/data-item-linking/item-linking-code-node/) for detailed guidance on handling item linking. + + diff --git a/docs/flow-logic/error-handling/memory-errors.md b/docs/flow-logic/error-handling/memory-errors.md index ef020e27c..4a0d8d87a 100644 --- a/docs/flow-logic/error-handling/memory-errors.md +++ b/docs/flow-logic/error-handling/memory-errors.md @@ -4,11 +4,13 @@ n8n doesn't restrict the amount of data each node can fetch and process. While t ## Identifying out of memory situations -Error messages including **Problem running workflow**, **Connection Lost**, or **503 Service Temporarily Unavailable** suggest that an n8n instance has become unavailable. The execution list shows an **Unknown** status for the executions. +n8n provides error messages that warn you in some out of memory situations. For example, messages such as **Execution stopped at this node (n8n may have run out of memory while executing it)**. + +Error messages including **Problem running workflow**, **Connection Lost**, or **503 Service Temporarily Unavailable** suggest that an n8n instance has become unavailable. When self-hosting n8n, you may also see error messages such as **Allocation failed - JavaScript heap out of memory** in your server logs. -In most environments (including n8n cloud), n8n restarts automatically when encountering such an issue. However, when running n8n from the command line you might need to restart it manually. +On n8n Cloud, or when using n8n's Docker image, n8n restarts automatically when encountering such an issue. However, when running n8n with npm you might need to restart it manually. ## Typical causes @@ -17,7 +19,7 @@ Such problems occur when a workflow execution requires more memory than availabl - Amount of [JSON data](/data/data-structure/). - Size of binary data. - Number of nodes in a workflow. -- Some nodes are memory-heavy: the [Code](/integrations/builtin/core-nodes/n8n-nodes-base.code/) node and the older Code node can increase memory consumption significantly. +- Some nodes are memory-heavy: the [Code](/integrations/builtin/core-nodes/n8n-nodes-base.code/) node and the older Function node can increase memory consumption significantly. - Manual or automatic workflow executions: manual executions increase memory consumption as n8n makes a copy of the data for the frontend. - Additional workflows running at the same time. @@ -46,4 +48,8 @@ However, as long as your sub-workflow does the heavy lifting for each batch and ### Increase old memory -This only applies to self-hosting n8n. When encountering **JavaScript heap out of memory** errors, it is often useful to allocate additional memory to the old memory section of the V8 JavaScript engine. To do this, set the appropriate [V8 option](https://nodejs.org/api/cli.html#--max-old-space-sizesize-in-megabytes){:target=_blank .external-link} `--max-old-space-size=SIZE` either through the CLI or through the `NODE_OPTIONS` [environment variable](https://nodejs.org/api/cli.html#node_optionsoptions){:target=_blank .external-link}. +This applies to self-hosting n8n. When encountering **JavaScript heap out of memory** errors, it is often useful to allocate additional memory to the old memory section of the V8 JavaScript engine. To do this, set the appropriate [V8 option](https://nodejs.org/api/cli.html#--max-old-space-sizesize-in-megabytes){:target=_blank .external-link} `--max-old-space-size=SIZE` either through the CLI or through the `NODE_OPTIONS` [environment variable](https://nodejs.org/api/cli.html#node_optionsoptions){:target=_blank .external-link}. + +## Avoid the n8n instance crashing when a workflow crashes + +This applies to self-hosting n8n. To avoid the entire n8n instance crashing when a workflow runs out of memory, you can run n8n in own mode rather than main mode. Refer to [Execution modes and processes](/hosting/scaling/execution-modes-processes/) for more information. diff --git a/docs/hosting/environment-variables/environment-variables.md b/docs/hosting/environment-variables/environment-variables.md index c15ce190c..b66f6c44c 100644 --- a/docs/hosting/environment-variables/environment-variables.md +++ b/docs/hosting/environment-variables/environment-variables.md @@ -152,6 +152,7 @@ Refer to [User management](/hosting/authentication/user-management-self-hosted/) | `EXECUTIONS_DATA_PRUNE` | Boolean | `false` | Whether to delete data of past executions on a rolling basis. | | `EXECUTIONS_DATA_MAX_AGE` | Number | `336` | The execution age (in hours) before it's deleted. | | `EXECUTIONS_DATA_PRUNE_TIMEOUT` | Number | `3600` | The timeout (in seconds) after n8n prunes execution data. | +| `EXECUTIONS_DATA_PRUNE_MAX_COUNT` | Number | `0` (no limit) | Maximum number of executions to keep in the database. | ## Logs diff --git a/docs/hosting/scaling/execution-data.md b/docs/hosting/scaling/execution-data.md index 7b9fb8f31..9dc5363d2 100644 --- a/docs/hosting/scaling/execution-data.md +++ b/docs/hosting/scaling/execution-data.md @@ -1,34 +1,32 @@ # Execution data -Depending on your executions settings and volume, your n8n database can quickly swell in size and eventually run out of storage. +Depending on your executions settings and volume, your n8n database can grow in size and eventually run out of storage. -To avoid this and ensure continued proper functionality, it is recommended to ensure you are only saving the desired data and to enable pruning of old executions data. +To avoid this, n8n recommends that you don't save unnecessary data, and enable pruning of old executions data. -This is done by configuring the corresponding [environment variables](/hosting/environment-variables/environment-variables/#executions). +To do this, configure the corresponding [environment variables](/hosting/environment-variables/environment-variables/#executions). -## Saving data +## Reduce saved data -You can select which executions data is saved, for example only those executions that result in an `Error`, so that only those records you want to keep are saved in the database. +You can select which executions data n8n saves. For example, you can save only executions that result in an `Error`. - - ```sh -// Save executions ending in errors +# npm +# Save executions ending in errors export EXECUTIONS_DATA_SAVE_ON_ERROR=all -// Save successful executions +# Save successful executions export EXECUTIONS_DATA_SAVE_ON_SUCCESS=all -// Don't save node progress for each execution +# Don't save node progress for each execution export EXECUTIONS_DATA_SAVE_ON_PROGRESS=false -// Don't save manually launched executions +# Don't save manually launched executions export EXECUTIONS_DATA_SAVE_MANUAL_EXECUTIONS=false ``` - - ```sh +# Docker docker run -it --rm \ --name n8n \ -p 5678:5678 \ @@ -38,10 +36,9 @@ docker run -it --rm \ -e EXECUTIONS_DATA_SAVE_MANUAL_EXECUTIONS=false \ n8nio/n8n ``` - - ```yaml +# Docker Compose n8n: environment: - EXECUTIONS_DATA_SAVE_ON_ERROR=all @@ -49,48 +46,51 @@ n8n: - EXECUTIONS_DATA_SAVE_ON_PROGRESS=true - EXECUTIONS_DATA_SAVE_MANUAL_EXECUTIONS=false ``` - - - -!!! note "Keep in mind" - These settings can also be configured on an individual workflow basis via the [workflow settings](/workflows/workflows/#workflow-settings). -### Enable data pruning +!!! note "Configuration at workflow level" + You can also configure these settings on an individual workflow basis using the [workflow settings](/workflows/workflows/#workflow-settings). + + +## Enable data pruning + +You can enable data pruning to automatically delete executions after a given time period. If you don't set `EXECUTIONS_DATA_MAX_AGE`, 336 hours (14 days) is the default. + +You can choose to prune executions data before the time set in `EXECUTIONS_DATA_MAX_AGE`, using `EXECUTIONS_DATA_PRUNE_MAX_COUNT`. This sets a maximum number of executions to store in the database. Once you reach the limit, n8n starts to delete the oldest execution records. This can help with database performance issues, especially if you use SQLite. -You can enable data pruning to automatically delete execution data older than a desired time period. If no `EXECUTIONS_DATA_MAX_AGE` is set, then 336 hours (14 days) is used by default. - - ```sh -// Activate automatic data pruning +# npm +# Activate automatic data pruning export EXECUTIONS_DATA_PRUNE=true -// Number of hours after execution data will be deleted +# Number of hours after execution that n8n deletes data export EXECUTIONS_DATA_MAX_AGE=168 -``` - - +# Number of executions to store +export EXECUTIONS_DATA_PRUNE_MAX_COUNT=50000 +``` + ```sh +# Docker docker run -it --rm \ --name n8n \ -p 5678:5678 \ -e EXECUTIONS_DATA_PRUNE=true \ -e EXECUTIONS_DATA_MAX_AGE=168 \ + -e EXECUTIONS_DATA_PRUNE_MAX_COUNT=50000 \ n8nio/n8n ``` - - ```yaml +# Docker Compose n8n: environment: - EXECUTIONS_DATA_PRUNE=true - EXECUTIONS_DATA_MAX_AGE=168 + - EXECUTIONS_DATA_PRUNE_MAX_COUNT=50000 ``` - - -!!! note "Keep in mind" - If you are running n8n using the default SQLite database, the disk-space of any pruned data is not automatically freed up but rather reused for future executions data. To free up this space configure the `DB_SQLITE_VACUUM_ON_STARTUP` [environment variable](/hosting/environment-variables/environment-variables/#sqlite) or manually run the [VACUUM](https://www.sqlite.org/lang_vacuum.html) operation. + +!!! note "SQLite" + If you run n8n using the default SQLite database, the disk-space of any pruned data isn't automatically freed up but rather reused for future executions data. To free up this space configure the `DB_SQLITE_VACUUM_ON_STARTUP` [environment variable](/hosting/environment-variables/environment-variables/#sqlite) or manually run the [VACUUM](https://www.sqlite.org/lang_vacuum.html) operation. diff --git a/docs/hosting/scaling/index.md b/docs/hosting/scaling/index.md index bf2d25347..c2a33444a 100644 --- a/docs/hosting/scaling/index.md +++ b/docs/hosting/scaling/index.md @@ -1,3 +1,7 @@ # Scaling n8n -n8n can be run in different [modes](/hosting/scaling/execution-modes-processes/) depending on your needs. The `queue` mode provides the best scalability, and its configuration is detailed in [Queue mode](/hosting/scaling/queue-mode/). +When running n8n at scale, with a large number of users, workflows, or executions, you need to change your n8n configuration to ensure good performance. + +n8n can run in different [modes](/hosting/scaling/execution-modes-processes/) depending on your needs. The `queue` mode provides the best scalability. Refer to [Queue mode](/hosting/scaling/queue-mode/) for configuration details. + +You can configure data saving and pruning to improve database performance. Refer to [Execution data](/hosting/scaling/execution-data/) for details. 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 6d101d6c8..69f5e8647 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.actionnetwork.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.actionnetwork.md @@ -1,9 +1,16 @@ # Action Network -[Action Network](https://actionnetwork.org/) is an open platform that empowers individuals and groups to organize for progressive causes. + + +The Action Network node allows you to automate work in Action Network, and integrate Action Network with other applications. n8n has built-in support for a wide range of Action Network features, including creating, updating, and deleting events, people, tags, and signatures. + +On this page, you'll find a list of operations the Action Network node supports, and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/actionnetwork/). + Refer to [Action Network credentials](/integrations/builtin/credentials/actionnetwork/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Action Network integrations](https://n8n.io/integrations/action-network/){:target="_blank" .external-link} list. ## Basic operations 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 2b1702dc3..d7fb7ea4e 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.activecampaign.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.activecampaign.md @@ -1,9 +1,14 @@ # ActiveCampaign -[ActiveCampaign](https://www.activecampaign.com/) is a cloud software platform for small-to-mid-sized business. The company offers software for customer experience automation, which combines the email marketing, marketing automation, sales automation, and CRM categories. +The ActiveCampaign node allows you to automate work in ActiveCampaign, and integrate ActiveCampaign with other applications. n8n has built-in support for a wide range of ActiveCampaign features, including creating, getting, updating, and deleting accounts, contact, orders, e-commerce customers, connections, lists, tags, and deals. + +On this page, you'll find a list of operations the ActiveCampaign node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/activecampaign/). + Refer to [ActiveCampaign credentials](/integrations/builtin/credentials/activecampaign/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [ActiveCampaign integrations](https://n8n.io/integrations/activecampaign/){:target="_blank" .external-link} list. ## Basic Operations 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 8c6d801b8..bcf6716ad 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.adalo.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.adalo.md @@ -1,9 +1,14 @@ # Adalo -[Adalo](https://www.adalo.com/){:target=_blank .external-link} is a low code app builder. +The Adalo node allows you to automate work in Adalo, and integrate Adalo with other applications. n8n has built-in support for a wide range of Adalo features, including like creating, getting, updating and deleting databases, records, and collections. + +On this page, you'll find a list of operations the Adalo node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/adalo/). + Refer to [Adalo credentials](/integrations/builtin/credentials/adalo/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Adalo integrations list](https://n8n.io/integrations/adalo/){:target=_blank .external-link}. ## Operations 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 600444c6f..5d629cc22 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.affinity.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.affinity.md @@ -1,9 +1,14 @@ # Affinity -[Affinity](https://www.affinity.co/) is a powerful relationship intelligence platform enabling teams to leverage their network to close the next big deal. +The Affinity node allows you to automate work in Affinity, and integrate Affinity with other applications. n8n has built-in support for a wide range of Affinity features, including creating, getting, updating and deleting lists, entries, organization, and persons. + +On this page, you'll find a list of operations the Affinity node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/affinity/). + Refer to [Affinity credentials](/integrations/builtin/credentials/affinity/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Affinity integrations](https://n8n.io/integrations/affinity/){:target="_blank" .external-link} list. ## Basic Operations 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 cdc1df107..1b3c08728 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.agilecrm.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.agilecrm.md @@ -1,9 +1,14 @@ # Agile CRM -[Agile CRM](https://www.agilecrm.com/) is a CRM with Sales, Marketing and Service automation in single platform. It has sales tracking, contact management, marketing automation, web analytics, two-way emails, telephony, and a helpdesk. +The Agile CRM node allows you to automate work in Agile CRM, and integrate Agile CRM with other applications. n8n has built-in support for a wide range of Agile CRM features, including creating, getting, updating and deleting companies, contracts, and deals. + +On this page, you'll find a list of operations the Agile CRM node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/agilecrm/). + Refer to [Agile CRM credentials](/integrations/builtin/credentials/agilecrm/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Agile CRM integrations](https://n8n.io/integrations/agile-crm/){:target="_blank" .external-link} list. ## Basic Operations 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 64f059c13..cc760e55e 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.airtable.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.airtable.md @@ -1,9 +1,15 @@ # Airtable -[Airtable](https://airtable.com/) is a spreadsheet-database hybrid, with the features of a database but applied to a spreadsheet. The fields in an Airtable table are similar to cells in a spreadsheet, but have types such as 'checkbox', 'phone number', and 'drop-down list', and can reference file attachments like images. +The Airtable node allows you to automate work in Airtable, and integrate Airtable with other applications. n8n has built-in support for a wide range of Airtable features, including creating, reading, listing, updating and deleting tables. + +On this page, you'll find a list of operations the Airtable node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/airtable/). + Refer to [Airtable credentials](/integrations/builtin/credentials/airtable/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Airtable integrations](https://n8n.io/integrations/airtable/){:target="_blank" .external-link} list. + ## Basic Operations 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 e0af60f6d..e51256962 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.amqp.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.amqp.md @@ -1,10 +1,14 @@ # AMQP Sender -[AMQP](https://www.amqp.org/) is an open standard application layer protocol for message-oriented middleware. The defining features of AMQP are message orientation, queuing, routing, reliability and security. This node supports AMQP 1.0 compatible message brokers. +The AMQP Sender node allows you to automate work in AMQP Sender, and integrate AMQP Sender with other applications. n8n has built-in support for a wide range of AMQP Sender features, including sending messages. + +On this page, you'll find a list of operations the AMQP Sender node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/amqp/). + Refer to [AMQP Sender credentials](/integrations/builtin/credentials/amqp/) for guidance on setting up authentication. +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [AMQP Sender integrations](https://n8n.io/integrations/amqp-sender/){:target="_blank" .external-link} list. ## Basic Operations 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 c0ae86d50..1ad8870bf 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.apitemplateio.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.apitemplateio.md @@ -1,9 +1,15 @@ # APITemplate.io -[APITemplate.io](https://apitemplate.io) allows you to auto-generate images and PDF documents. +The APITemplate.io node allows you to automate work in APITemplate.io, and integrate APITemplate.io with other applications. n8n has built-in support for a wide range of APITemplate.io features, including getting and creating, accounts and PDFs. + +On this page, you'll find a list of operations the APITemplate.io node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/apitemplateio/). + Refer to [APITemplate.io credentials](/integrations/builtin/credentials/apitemplateio/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [APITemplate.io integrations](https://n8n.io/integrations/apitemplateio/){:target="_blank" .external-link} list. + ## Basic Operations 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 0a10db80c..0f94c001a 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.asana.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.asana.md @@ -1,10 +1,14 @@ # Asana -[Asana](https://asana.com/) is a web and mobile application designed to help teams organize, track, and manage their work. +The Asana node allows you to automate work in Asana, and integrate Asana with other applications. n8n has built-in support for a wide range of Asana features, including creating, updating, deleting, and getting users, tasks, projects, and subtasks. + +On this page, you'll find a list of operations the Asana node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/asana/). + Refer to [Asana credentials](/integrations/builtin/credentials/asana/) for guidance on setting up authentication. +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Asana integrations](https://n8n.io/integrations/asana/){:target="_blank" .external-link} list. ## Basic Operations 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 0ab1a467d..923b20815 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.automizy.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.automizy.md @@ -1,9 +1,15 @@ # Automizy -[Automizy](https://automizy.com/) is an email marketing automation software that offers AI-powered Subject Line Tester, AB testing, and email automation. +The Automizy node allows you to automate work in Automizy, and integrate Automizy with other applications. n8n has built-in support for a wide range of Automizy features, including creating, reading, listing, updating, deleting contacts, and lists. + +On this page, you'll find a list of operations the Automizy node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/automizy/). + Refer to [Automizy credentials](/integrations/builtin/credentials/automizy/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [Automizy integrations](https://n8n.io/integrations/automizy/){:target=_blank .external-link} list. + ## Basic Operations 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 d4cb769ab..b8a5f9aae 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.autopilot.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.autopilot.md @@ -1,9 +1,15 @@ # Autopilot -[Autopilot](https://www.autopilothq.com/) is a visual marketing software that allows you to automate and personalize your marketing across the entire customer journey. +The Autopilot node allows you to automate work in Autopilot, and integrate Autopilot with other applications. n8n has built-in support for a wide range of Autopilot features, including creating, reading, listing, updating, removing contact journey, and lists. + +On this page, you'll find a list of operations the Autopilot node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/autopilot/). + Refer to [Autopilot credentials](/integrations/builtin/credentials/autopilot/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [Autopilot integrations](https://n8n.io/integrations/autopilot/){:target=_blank .external-link} list. + ## Basic Operations 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 0ebc79317..2e5dfc792 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscertificatemanager.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscertificatemanager.md @@ -1,9 +1,14 @@ # AWS Certificate Manager -[AWS Certificate Manager](https://aws.amazon.com/certificate-manager/){:target=_blank .external-link} is a service that lets you provision, manage, and deploy public and private Secure Sockets Layer/Transport Layer Security (SSL/TLS) certificates for use with AWS services and your internal connected resources. +The AWS Certificate Manager node allows you to automate work in AWS Certificate Manager, and integrate AWS Certificate Manager with other applications. n8n has built-in support for a wide range of AWS Certificate Manager features, including creating, deleting, getting, and renewing SSL certificates. + +On this page, you'll find a list of operations the AWS Certificate Manager node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). + Refer to [AWS Certificate Manager credentials](/integrations/builtin/credentials/aws/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [AWS Certificate Manager](https://n8n.io/integrations/aws-certificate-manager/){:target=_blank .external-link} integrations list. ## Operations 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 eabdbd1b5..3d06a6a1b 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscomprehend.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscomprehend.md @@ -1,9 +1,14 @@ # AWS Comprehend -[AWS Comprehend](https://aws.amazon.com/comprehend/) is a natural language processing (NLP) service that uses machine learning to find insights and relationships in a text. +The AWS Comprehend node allows you to automate work in AWS Comprehend, and integrate AWS Comprehend with other applications. n8n has built-in support for a wide range of AWS Comprehend features, including identifying and analyzing texts. + +On this page, you'll find a list of operations the AWS Comprehend node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). + Refer to [AWS Comprehend credentials](/integrations/builtin/credentials/aws/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [AWS Comprehend integrations](https://n8n.io/integrations/aws-comprehend/){:target=_blank .external-link} list. ## Basic Operations 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 85127d708..0eb879c31 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsdynamodb.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsdynamodb.md @@ -1,9 +1,16 @@ # AWS DynamoDB -[AWS DynamoDB](https://aws.amazon.com/DynamoDB/) is a key-value and document database provided by Amazon as a part of Amazon Web Services. +The AWS DynamoDB node allows you to automate work in AWS DynamoDB, and integrate AWS DynamoDB with other applications. n8n has built-in support for a wide range of AWS DynamoDB features, including creating, reading, updating, deleting items, and records on a database + +On this page, you'll find a list of operations the AWS DynamoDB node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). + Refer to [AWS DynamoDB credentials](/integrations/builtin/credentials/aws/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [AWS DynamoDB integrations](https://n8n.io/integrations/aws-dynamodb/){:target=_blank .external-link} list. + + ## Basic operations 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 c835a76b1..9307d508b 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awselb.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awselb.md @@ -1,9 +1,15 @@ # AWS Elastic Load Balancing -[AWS Elastic Load Balancing](https://aws.amazon.com/elasticloadbalancing/){:target=_blank .external-link} (ELB) automatically distributes incoming application traffic across multiple targets and virtual appliances in one or more Availability Zones (AZs). +The AWS Elastic Load Balancing node allows you to automate work in AWS ELB, and integrate AWS ELB with other applications. n8n has built-in support for a wide range of AWS ELB features, including adding, getting, removing, deleting certificates and load balancers. + +On this page, you'll find a list of operations the AWS ELB node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). + Refer to [AWS ELB credentials](/integrations/builtin/credentials/aws/){:target=_blank .external-link} for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [AWS Elastic Load Balancing integrations](https://n8n.io/integrations/aws-elb/){:target=_blank .external-link} list. + ## Operations 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 5b61af37c..0160d0061 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awslambda.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awslambda.md @@ -1,9 +1,15 @@ # AWS Lambda -[AWS Lambda](https://aws.amazon.com/lambda/) is an event-driven, serverless computing platform provided by Amazon as a part of Amazon Web Services. It is a computing service that runs code in response to events and automatically manages the computing resources required by that code. +The AWS Lambda node allows you to automate work in AWS Lambda, and integrate AWS Lambda with other applications. n8n has built-in support for a wide range of AWS Lambda features, including invoking functions. + +On this page, you'll find a list of operations the AWS Lambda node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). + Refer to [AWS Lambda credentials](/integrations/builtin/credentials/aws/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [AWS Lambda integrations](https://n8n.io/integrations/aws-lambda/){:target=_blank .external-link} list. + ## Basic Operations 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 cae7f2aff..e89a768c2 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsrekognition.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsrekognition.md @@ -1,9 +1,15 @@ # AWS Rekognition -[AWS Rekognition](https://aws.amazon.com/rekognition/) allows you to add image and video analysis to your applications. With AWS Rekognition, you can identify faces, labels, and celebrities in images. +The AWS Rekognition node allows you to automate work in AWS Rekognition, and integrate AWS Rekognition with other applications. n8n has built-in support for a wide range of AWS Rekognition features, including analyzing images. + +On this page, you'll find a list of operations the AWS Rekognition node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). + Refer to [AWS Rekognition credentials](/integrations/builtin/credentials/aws/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [AWS Rekognition integrations](https://n8n.io/integrations/aws-rekognition/){:target=_blank .external-link} list. + ## Basic Operations 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 65445d8cb..1fa0d4c45 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awss3.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awss3.md @@ -1,9 +1,15 @@ # AWS S3 -[AWS S3](https://aws.amazon.com/s3/) is a service offered by Amazon Web Services that provides object storage through a web service interface. +The AWS S3 node allows you to automate work in AWS S3, and integrate AWS S3 with other applications. n8n has built-in support for a wide range of AWS S3 features, including creating, getting, deleting, copying, uploading, and downloading folders, files, and buckets. + +On this page, you'll find a list of operations the AWS S3 node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). + Refer to [AWS S3 credentials](/integrations/builtin/credentials/aws/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [AWS S3 integrations](https://n8n.io/integrations/aws-s3/){:target=_blank .external-link} list. + ## Basic Operations 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 87b026996..8bcb045d9 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsses.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsses.md @@ -1,9 +1,15 @@ # AWS SES -[AWS SES](https://aws.amazon.com/ses/) is a cost-effective, flexible, and scalable email service that enables developers to send mail from within any application. +The AWS SES node allows you to automate work in AWS SES, and integrate AWS SES with other applications. n8n has built-in support for a wide range of AWS SES features, including creating, getting, deleting, sending, updating, and adding templates and emails. + +On this page, you'll find a list of operations the AWS SES node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). + Refer to [AWS SES credentials](/integrations/builtin/credentials/aws/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [AWS SES integrations](https://n8n.io/integrations/aws-ses/){:target=_blank .external-link} list. + ## Basic Operations 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 3d9d41222..192a230b1 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssns.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssns.md @@ -1,9 +1,14 @@ # AWS SNS -[AWS SNS](https://aws.amazon.com/sns/) is a notification service provided as part of Amazon Web Services. It provides a low-cost infrastructure for the mass delivery of messages, predominantly to mobile users. +The AWS SNS node allows you to automate work in AWS SNS, and integrate AWS SNS with other applications. n8n has built-in support for a wide range of AWS SNS features, including publishing messages. -!!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). +On this page, you'll find a list of operations the AWS SNS node supports and links to more resources. + +!!! note "Credentials" + Refer to [AWS SNS credentials](/integrations/builtin/credentials/aws/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [AWS SNS integrations](https://n8n.io/integrations/aws-sns/){:target=_blank .external-link} list. ## Basic Operations 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 9feed5359..ac68cb13d 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssqs.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssqs.md @@ -1,9 +1,15 @@ # AWS SQS -[AWS SQS](https://aws.amazon.com/sqs/) is a fully managed message queuing service that enables you to decouple and scale microservices, distributed systems, and serverless applications. +The AWS SQS node allows you 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. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). + Refer to [AWS SQS credentials](/integrations/builtin/credentials/aws/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [AWS SQS integrations](https://n8n.io/integrations/aws-sqs/){:target=_blank .external-link} list. + ## Basic Operations 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 cb2edbf90..14acd124e 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstextract.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstextract.md @@ -1,10 +1,18 @@ # AWS Textract -[AWS Textract](https://aws.amazon.com/textract/) is a service that extracts printed text, handwriting, and data from any document. +The AWS Textract node allows you 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. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). + Refer to [AWS Textract credentials](/integrations/builtin/credentials/aws/) for guidance on setting up authentication. +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [AWS Textract integrations](https://n8n.io/integrations/aws-textract/){:target=_blank .external-link} list. + + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [AWS Textract integrations](https://n8n.io/integrations/aws-textract/){:target=_blank .external-link} list. ## Basic Operations 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 db0d67bfa..f52984d48 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstranscribe.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstranscribe.md @@ -1,9 +1,15 @@ # AWS Transcribe -[AWS Transcribe](https://aws.amazon.com/transcribe/) is a service that recognizes speech in your audio or video and transcribes that speech into text. +The AWS Transcribe node allows you to automate work in AWS Transcribe, and integrate AWS Transcribe with other applications. n8n has built-in support for a wide range of AWS Transcribe features, including creating, deleting, and getting transcription jobs. + +On this page, you'll find a list of operations the AWS Transcribe node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). + Refer to [AWS Transcribe credentials](/integrations/builtin/credentials/aws/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [AWS Transcribe integrations](https://n8n.io/integrations/aws-transcribe/){:target=_blank .external-link} list. + ## Basic Operations @@ -16,9 +22,9 @@ ## Example Usage - +⁶ This workflow allows you to create transcription jobs for all your audio and video files stored in AWS S3. You can also find the [workflow](https://n8n.io/workflows/1111) on n8n.io. This example usage workflow uses the following nodes. -- [Start](/integrations/builtin/core-nodes/n8n-nodes-base.start/) +- [Start](/integrations/buil 5tin/core-nodes/n8n-nodes-base.start/) - [AWS S3](/integrations/builtin/app-nodes/n8n-nodes-base.awsS3/) - [AWS Transcribe]() 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 94acabe2b..3a1025618 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bamboohr.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bamboohr.md @@ -1,9 +1,15 @@ # BambooHR -[BambooHR](https://www.bamboohr.com/) provides human resources software as a service. +The BambooHR node allows you to automate work in BambooHR, and integrate BambooHR with other applications. n8n has built-in support for a wide range of BambooHR features, including creating, deleting, downloading, and getting company reports, employee documents, and files. + +On this page, you'll find a list of operations the BambooHR node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/bamboohr/). + Refer to [BambooHR credentials](/integrations/builtin/credentials/bamboohr/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [BambooHR integrations](https://n8n.io/integrations/bamboohr/){:target=_blank .external-link} list. + ## Basic Operations 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 baa3f2808..38646e0fa 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bannerbear.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bannerbear.md @@ -1,9 +1,16 @@ # Bannerbear -[Bannerbear](https://www.bannerbear.com/) is an API-based image generation service that automatically generates variations of graphic templates. +The Bannerbear node allows you to automate work in Bannerbear, and integrate Bannerbear with other applications. n8n has built-in support for a wide range of Bannerbear features, including creating and getting images and templates. + +On this page, you'll find a list of operations the Bannerbear node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/bannerbear/). + Refer to [Bannerbear credentials](/integrations/builtin/credentials/bannerbear/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [Bannerbear integrations](https://n8n.io/integrations/bannerbear/){:target=_blank .external-link} list. + + ## Basic Operations 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 2a3ab2dce..9813b5ab3 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.baserow.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.baserow.md @@ -1,9 +1,16 @@ # Baserow -[Baserow](https://baserow.io/) is an open source no-code database and Airtable alternative. +The Baserow node allows you to automate work in Baserow, and integrate Baserow with other applications. n8n has built-in support for a wide range of Baserow features, including creating, getting, retrieving, and updating rows. + +On this page, you'll find a list of operations the Baserow node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/baserow/). + Refer to [Baserow credentials](/integrations/builtin/credentials/baserow/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [Baserow integrations](https://n8n.io/integrations/baserow/){:target=_blank .external-link} list. + + ## Basic operations 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 39c1ba48a..236a8c952 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.beeminder.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.beeminder.md @@ -1,9 +1,15 @@ # Beeminder -[Beeminder](https://www.beeminder.com/) is a service that helps you to self-track and stick to your goals. +The Beeminder node allows you to automate work in Beeminder, and integrate Beeminder with other applications. n8n has built-in support for a wide range of Beeminder features, including creating, deleting, and updating datapoints. + +On this page, you'll find a list of operations the Beeminder node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/beeminder/). + Refer to [Beeminder credentials](/integrations/builtin/credentials/beeminder/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [Beeminder integrations](https://n8n.io/integrations/beeminder/){:target=_blank .external-link} list. + 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 14cdb032a..c65241cf3 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitly.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitly.md @@ -1,9 +1,16 @@ # Bitly -[Bitly](https://bitly.com/) is URL shortening service and a link management platform that allows users to shorten, create and share trusted, powerful links for businesses. +The Bitly node allows you to automate work in Bitly, and integrate Bitly with other applications. n8n has built-in support for a wide range of Bitly features, including creating, getting, and updating links. + +On this page, you'll find a list of operations the Bitly node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/bitly/). + Refer to [Bitly credentials](/integrations/builtin/credentials/bitly/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [Bitly integrations](https://n8n.io/integrations/bitly/){:target=_blank .external-link} list. + + ## Basic Operations 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 08388fbf5..1d2e1fff7 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitwarden.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitwarden.md @@ -1,9 +1,15 @@ # Bitwarden -[Bitwarden](https://www.bitwarden.com/) is an open-source password management solution for individuals, teams, and business organizations. +The Bitwarden node allows you to automate work in Bitwarden, and integrate Bitwarden with other applications. n8n has built-in support for a wide range of Bitwarden features, including creating, getting, deleting, and updating collections, events, groups, and members. + +On this page, you'll find a list of operations the Bitwarden node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/bitwarden/). + Refer to [Bitwarden credentials](/integrations/builtin/credentials/bitwarden/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [Bitwarden integrations](https://n8n.io/integrations/bitwarden/){:target=_blank .external-link} list. + 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 aef32ffe5..4a476f53b 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.box.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.box.md @@ -1,10 +1,16 @@ # Box -[Box](https://www.box.com/) is a cloud computing company which provides file sharing, collaborating, and other tools for working with files that are uploaded to its servers. +The Box node allows you to automate work in Box, and integrate Box with other applications. n8n has built-in support for a wide range of Box features, including creating, copying, deleting, searching, uploading, and downloading files and folders. + +On this page, you'll find a list of operations the Box node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/box/). + Refer to [Box credentials](/integrations/builtin/credentials/box/) for guidance on setting up authentication. +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [Box integrations](https://n8n.io/integrations/box/){:target=_blank .external-link} list. + + ## Basic Operations 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 5621792ec..f5b671003 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.brandfetch.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.brandfetch.md @@ -1,9 +1,15 @@ # Brandfetch -[Brandfetch](https://www.Brandfetch.com/) is a brand search engine that helps you find logos, colors, fonts, images, and more. +The Brandfetch node allows you to automate work in Brandfetch, and integrate Brandfetch with other applications. n8n has built-in support for a wide range of Brandfetch features, including returning a company’s information + +On this page, you'll find a list of operations the Brandfetch node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/brandfetch/). + Refer to [Brandfetch credentials](/integrations/builtin/credentials/brandfetch/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [Brandfetch integrations](https://n8n.io/integrations/brandfetch/){:target=_blank .external-link} list. + 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 8b3b6dac9..415990ddb 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bubble.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bubble.md @@ -1,9 +1,16 @@ # Bubble -[Bubble](https://www.bubble.io/) lets you create interactive, multi-user apps for desktop and mobile web browsers. +The Bubble node allows you to automate work in Bubble, and integrate Bubble with other applications. n8n has built-in support for a wide range of Bubble features, including creating, deleting, getting, and updating objects. + +On this page, you'll find a list of operations the Bubble node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/bubble/). + Refer to [Bubble credentials](/integrations/builtin/credentials/bubble/) for guidance on setting up authentication. + +!!! note "Examples the Templates" + For usage examples and templates to help you get started, take a look at n8n's [Bubble integrations](https://n8n.io/integrations/bubble/){:target=_blank .external-link} list. + + ## Basic Operations 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 e0cbbc876..438932692 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.chargebee.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.chargebee.md @@ -1,9 +1,16 @@ # Chargebee -[Chargebee](https://www.chargebee.com/) is a billing platform for subscription based SaaS and eCommerce businesses. Chargebee integrates with payment gateways to let you automate recurring payment collection along with invoicing, taxes, accounting, email notifications, SaaS Metrics and customer management. +The Chargebee node allows you to automate work in Chargebee, and integrate Chargebee with other applications. n8n has built-in support for a wide range of Chargebee features, including returning, canceling, and creating customers, invoices, and subscriptions + +On this page, you'll find a list of operations the Chargebee node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/chargebee/). + Refer to [Chargebee credentials](/integrations/builtin/credentials/chargebee/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [Chargebee integrations](https://n8n.io/integrations/chargebee/){:target=_blank .external-link} list. + + ## Basic Operations 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 303857ad0..ffc930bc0 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.circleci.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.circleci.md @@ -1,9 +1,16 @@ # CircleCI -[CircleCI](https://circleci.com/) is a continuous integration and delivery platform helps teams release quality code, faster. +The CircleCI node allows you to automate work in CircleCI, and integrate CircleCI with other applications. n8n has built-in support for a wide range of CircleCI features, including getting and triggering pipelines. + +On this page, you'll find a list of operations the CircleCI node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/circleci/). + Refer to [CircleCI credentials](/integrations/builtin/credentials/circleci/) for guidance on setting up authentication. + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [CircleCI integrations](https://n8n.io/integrations/circleci/){:target=_blank .external-link} list. + + ## Basic Operations 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 a888c4ec6..21575996b 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.ciscowebex.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.ciscowebex.md @@ -1,10 +1,18 @@ # Webex by Cisco -[Webex by Cisco](https://webex.com/) is a web conferencing and videoconferencing application. +The Webex by Cisco node allows you to automate work in Webex, and integrate Webex with other applications. n8n has built-in support for a wide range of Webex features, including creating, getting, updating, and deleting meetings and messages. + +On this page, you'll find a list of operations the Webex node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/ciscowebex/). + Refer to [Webex credentials](/integrations/builtin/credentials/ciscowebex/) for guidance on setting up authentication. +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [Webex integrations](https://n8n.io/integrations/webex-by-cisco/){:target=_blank .external-link} list. + + +!!! note "Examples and Templates" + For usage examples and templates to help you get started, take a look at n8n's [Webex integrations](https://n8n.io/integrations/webex-by-cisco/){:target=_blank .external-link} list. ## Basic operations 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 ee85feb00..eeb072c4f 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.citrixadc.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.citrixadc.md @@ -1,9 +1,15 @@ # Citrix ADC -[Citrix ADC](https://www.citrix.com/en-gb/products/citrix-adc/){:target=_blank .external-link} is an application delivery and load balancing solution for monolithic and microservices-based applications. +The Citrix ADC node allows you to automate work in Citrix ADC, and integrate Citrix ADC with other applications. n8n has built-in support for a wide range of Citrix ADC features, including creating and installing certificates and files. + +On this page, you'll find a list of operations the Citrix ADC node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/citrixadc/). + Refer to [Citrix ADC credentials](/integrations/builtin/credentials/citrixadc/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Citrix ADC integrations](https://n8n.io/integrations/citrix-adc/){:target="_blank" .external-link} list. + ## Operations 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 5f34cbf4b..9e3e65baa 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.clearbit.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.clearbit.md @@ -1,9 +1,14 @@ # Clearbit -[Clearbit](https://clearbit.com/) provides powerful products, and data APIs like contact enrichment, lead generation, financial compliance, and more to help businesses grow. +The Clearbit node allows you to automate work in Clearbit, and integrate Clearbit with other applications. n8n has built-in support for a wide range of Clearbit features, including auto-completing and looking up companies and persons. + +On this page, you'll find a list of operations the Clearbit node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/clearbit/). + Refer to [Clearbit credentials](/integrations/builtin/credentials/clearbit/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Clearbit integrations](https://n8n.io/integrations/clearbit/){:target="_blank" .external-link} list. ## Basic Operations 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 96f6b32ee..1e4de4c16 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.clickup.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.clickup.md @@ -1,9 +1,14 @@ # ClickUp -[ClickUp](https://clickup.com/) is a cloud-based collaboration and project management tool suitable for businesses of all sizes and industries. Features include communication and collaboration tools, task assignments and statuses, alerts and a task toolbar. +The ClickUp node allows you to automate work in ClickUp, and integrate ClickUp with other applications. n8n has built-in support for a wide range of ClickUp features, including creating, getting, deleting, and updating folders, checklists, tags, comments, and goals. + +On this page, you'll find a list of operations the ClickUp node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/clickup/). + Refer to [ClickUp credentials](/integrations/builtin/credentials/clickup/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [ClickUp integrations](https://n8n.io/integrations/clickup/){:target="_blank" .external-link} list. ## Basic Operations 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 72c3a9f32..05dd21b17 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.clockify.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.clockify.md @@ -1,9 +1,14 @@ # Clockify -[Clockify](https://clockify.me/) is a free time tracker and timesheet app for tracking work hours across projects. +The Clockify node allows you to automate work in Clockify, and integrate Clockify with other applications. n8n has built-in support for a wide range of Clockify features, including creating, updating, getting, and deleting tasks, time entries, projects, and tags. + +On this page, you'll find a list of operations the Clockify node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/clockify/). + Refer to [Clockify credentials](/integrations/builtin/credentials/clockify/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Clockify integrations](https://n8n.io/integrations/clockify/){:target="_blank" .external-link} list. ## Basic Operations 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 604d25436..97dd40c07 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cloudflare.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cloudflare.md @@ -1,9 +1,15 @@ # Cloudflare -[Cloudflare](https://www.cloudflare.com/){:target=_blank .external-link} provides a range of services to manage and protect your websites. +The Cloudflare node allows you to automate work in Cloudflare, and integrate Cloudflare with other applications. n8n has built-in support for a wide range of Cloudflare features, including deleting, getting, and uploading zone certificates. + +On this page, you'll find a list of operations the Cloudflare node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/cloudflare/). + Refer to [Cloudflare credentials](/integrations/builtin/credentials/cloudflare/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Cloudflare integrations](https://n8n.io/integrations/cloudflare/){:target="_blank" .external-link} list. + ## Operations 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 f7a08e3f2..ba641f0ff 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cockpit.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cockpit.md @@ -1,9 +1,14 @@ # Cockpit -[Cockpit](https://getcockpit.com/) is a headless CMS with an API-first approach that puts content first. It is designed to simplify the process of publication by separating content management from content consumption on the client side. +The Cockpit node allows you to automate work in Cockpit, and integrate Cockpit with other applications. n8n has built-in support for a wide range of Cockpit features, including creating, getting, and deleting collections, forms, and singleton. + +On this page, you'll find a list of operations the Cockpit node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/cockpit/). + Refer to [Cockpit credentials](/integrations/builtin/credentials/cockpit/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Cockpit integrations](https://n8n.io/integrations/cockpit/){:target="_blank" .external-link} list. ## Basic Operations 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 b33b02132..1a53f8c7b 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.coda.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.coda.md @@ -1,9 +1,14 @@ # Coda -[Coda](https://coda.io/) is a new type of document that blends the flexibility of documents, the power of spreadsheets, and the utility of applications into a single new canvas. +The Coda node allows you to automate work in Coda, and integrate Coda with other applications. n8n has built-in support for a wide range of Coda features, including creating, getting, and deleting controls, formulas, tables, and views. + +On this page, you'll find a list of operations the Coda node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/coda/). + Refer to [Coda credentials](/integrations/builtin/credentials/coda/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Coda integrations](https://n8n.io/integrations/coda/){:target="_blank" .external-link} list. ## Basic Operations 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 af6c1b4e8..a967088b4 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.coingecko.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.coingecko.md @@ -1,10 +1,14 @@ # CoinGecko -[CoinGecko](https://www.coingecko.com) provides a fundamental analysis of the crypto market. In addition to tracking price, volume and market capitalization, CoinGecko tracks community growth, open-source code development, major events, and on-chain metrics. +The CoinGecko node allows you to automate work in CoinGecko, and integrate CoinGecko with other applications. n8n has built-in support for a wide range of CoinGecko features, including getting coins and events. + +On this page, you'll find a list of operations the CoinGecko node supports and links to more resources. !!! note "Credentials" - The CoinGecko node does not require authentication. + Refer to [CoinGecko credentials](/integrations/builtin/credentials/coingecko/) for guidance on setting up authentication. +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [CoinGecko integrations](https://n8n.io/integrations/coingecko/){:target="_blank" .external-link} list. ## Basic Operations 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 4ad6a1307..618a59401 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.contentful.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.contentful.md @@ -1,9 +1,14 @@ # Contentful -[Contentful](https://www.contentful.com/) provides a content infrastructure for digital teams to power content in websites, apps, and devices. It offers a central hub for structured content, powerful management and delivery APIs, and a customizable web app. +The Contentful node allows you to automate work in Contentful, and integrate Contentful with other applications. n8n has built-in support for a wide range of Contentful features, including getting assets, content types, entries, locales, and space. + +On this page, you'll find a list of operations the Contentful node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/contentful/). + Refer to [Contentful credentials](/integrations/builtin/credentials/contentful/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Contentful integrations](https://n8n.io/integrations/contentful/){:target="_blank" .external-link} list. ## Basic Operations 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 d8666f26f..dc9f35e67 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.convertkit.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.convertkit.md @@ -1,9 +1,14 @@ # ConvertKit -[ConvertKit](https://www.convertkit.com/) is a fully-featured email marketing platform. ConvertKit can be used to build an email list, send email broadcasts, automate sequences, create segments, and build landing pages. +The ConvertKit node allows you to automate work in ConvertKit, and integrate ConvertKit with other applications. n8n has built-in support for a wide range of ConvertKit features, including creating, deleting, getting, and updating fields, forms, tags and sequences. + +On this page, you'll find a list of operations the ConvertKit node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/convertkit/). + Refer to [ConvertKit credentials](/integrations/builtin/credentials/convertkit/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [ConvertKit integrations](https://n8n.io/integrations/convertkit/){:target="_blank" .external-link} list. ## Basic Operations 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 9bd4f1000..3ed5dd600 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.copper.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.copper.md @@ -1,9 +1,14 @@ # Copper -[Copper](https://www.copper.com/) is a CRM that focuses on strong integration with Google's G Suite, targeted towards small and medium-sized businesses. +The Copper node allows you to automate work in Copper, and integrate Copper with other applications. n8n has built-in support for a wide range of Copper features, including getting, updating, deleting, and creating companies, customer sources, leads, projects and tasks. + +On this page, you'll find a list of operations the Copper node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/copper/). + Refer to [Copper credentials](/integrations/builtin/credentials/copper/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Copper integrations](https://n8n.io/integrations/copper/){:target="_blank" .external-link} list. ## Basic Operations 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 1a286757f..031283494 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cortex.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cortex.md @@ -1,9 +1,14 @@ # Cortex -[Cortex](https://github.com/TheHive-Project/CortexDocs) offers a powerful observable (URL, file, IP, etc) analysis mechanism. It allows you to analyze collected observables using a single tool, respond to threats, and interact with the constituency and other teams. +The Cortex node allows you to automate work in Cortex, and integrate Cortex with other applications. n8n has built-in support for a wide range of Cortex features, including getting, and executing responders, analyzers, and jobs. + +On this page, you'll find a list of operations the Cortex node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/cortex/). + Refer to [Cortex credentials](/integrations/builtin/credentials/cortex/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Cortex integrations](https://n8n.io/integrations/cortex/){:target="_blank" .external-link} list. ## Basic Operations 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 a802358a7..8e70ca6cc 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cratedb.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cratedb.md @@ -1,9 +1,14 @@ # CrateDB -[CrateDB](https://crate.io/) is an open-source distributed SQL database management system that integrates a fully searchable document-oriented data store based on a shared-nothing architecture, and is designed for high scalability. +The CrateDB node allows you to automate work in CrateDB, and integrate CrateDB with other applications. n8n has built-in support for a wide range of CrateDB features, including executing, inserting, and updating rows in the database. + +On this page, you'll find a list of operations the CrateDB node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/cratedb/). + Refer to [CrateDB credentials](/integrations/builtin/credentials/cratedb/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [CrateDB integrations](https://n8n.io/integrations/cratedb/){:target="_blank" .external-link} list. ## Basic Operations 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 0f00bf060..98c12f0f6 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.customerio.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.customerio.md @@ -1,9 +1,14 @@ # Customer.io -[Customer.io](https://customer.io/) enables users to send newsletters to selected segments of customers using their website data. You can send targeted emails, push notifications, and SMS to lower churn, create stronger relationships, and drive subscriptions. +The Customer.io node allows you to automate work in Customer.io, and integrate Customer.io with other applications. n8n has built-in support for a wide range of Customer.io features, including creating, deleting, adding/removing, and getting customers, events, campaigns, and segments. + +On this page, you'll find a list of operations the Customer.io node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/customerio/). + Refer to [Customer.io credentials](/integrations/builtin/credentials/customerio/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Customer.io integrations](https://n8n.io/integrations/customerio/){:target="_blank" .external-link} list. ## Basic Operations 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 1eba271c2..d0863b45e 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.deepl.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.deepl.md @@ -1,9 +1,15 @@ # DeepL -[DeepL](https://deepL.com) is a machine translation service that allows you to translate text to different languages. +The DeepL node allows you to automate work in DeepL, and integrate DeepL with other applications. n8n has built-in support for a wide range of DeepL features, including translating languages. + +On this page, you'll find a list of operations the DeepL node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/deepl/). + Refer to [DeepL credentials](/integrations/builtin/credentials/deepl/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [DeepL integrations](https://n8n.io/integrations/deepl/){:target="_blank" .external-link} list. + ## Basic Operations 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 11fc12828..2ac79411f 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.demio.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.demio.md @@ -1,9 +1,14 @@ # Demio -[Demio](https://demio.com) provides a simple, no-download webinar experience and all the marketing tools you need to generate better results. +The Demio node allows you to automate work in Demio, and integrate Demio with other applications. n8n has built-in support for a wide range of Demio features, including getting, and registering events and reports. + +On this page, you'll find a list of operations the Demio node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/demio/). + Refer to [Demio credentials](/integrations/builtin/credentials/demio/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Demio integrations](https://n8n.io/integrations/demio/){:target="_blank" .external-link} list ## Basic Operations 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 e9e611fc6..b58bdab07 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.dhl.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.dhl.md @@ -1,16 +1,14 @@ # DHL -The [DHL Shipment Tracking](https://developer.dhl.com/api-reference/shipment-tracking/) provides shipment status reports for services provided by DPDHL under these brand names: +The DHL node allows you to automate work in DHL, and integrate DHL with other applications. n8n has built-in support for a wide range of DHL features, including tracking shipment. -- Post & Parcel Germany -- DHL Global Forwarding -- DHL Freight -- DHL Express -- DHL Supply Chain -- DHL eCommerce Solutions (Asia-Pacific, US, Canada, EU) +On this page, you'll find a list of operations the DHL node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/dhl/). + Refer to [DHL credentials](/integrations/builtin/credentials/dhl/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [DHL integrations](https://n8n.io/integrations/dhl/){:target="_blank" .external-link} list. ## Basic Operations 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 2e1ab323c..60781b97e 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.discord.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.discord.md @@ -1,9 +1,14 @@ # Discord -[Discord](https://discord.com/) is a voice, video, and text communications platform for groups. Discord allows users to programmatically send messages using webhooks. +The Discord node allows you to automate work in Discord, and integrate Discord with other applications. n8n has built-in support for a wide range of Discord features, including sending messages in a Discord channel. + +On this page, you'll find a list of operations the Discord node supports and links to more resources. !!! note "Credentials" - The Discord node does not require authentication, but you must have access to a channel's settings to use webhooks. You can find out how to create a webhook in Discord [here](/integrations/builtin/credentials/discord/). + Refer to [Discord credentials](/integrations/builtin/credentials/discord/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Discord integrations](https://n8n.io/integrations/discord/){:target="_blank" .external-link} list. ## Basic Operations 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 0d70f38d0..b73711a2d 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.discourse.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.discourse.md @@ -1,9 +1,14 @@ # Discourse -[Discourse](https://www.discourse.org/) is an open-source discussion platform that can be used as a mailing list, discussion forum, long-form chat room, and more. +The Discourse node allows you to automate work in Discourse, and integrate Discourse with other applications. n8n has built-in support for a wide range of Discourse features, including creating, getting, updating, and removing categories, groups, posts, and users. + +On this page, you'll find a list of operations the Discourse node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/discourse/). + Refer to [Discourse credentials](/integrations/builtin/credentials/discourse/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Discourse integrations](https://n8n.io/integrations/discourse/){:target="_blank" .external-link} list. 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 a867c8b2f..605954c67 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.disqus.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.disqus.md @@ -1,9 +1,14 @@ # Disqus -[Disqus](https://disqus.com/) is a worldwide blog comment hosting service for web sites and online communities that use a networked platform. The company's platform includes various features, such as social integration, social networking, user profiles, spam and moderation tools, analytics, email notifications, and mobile commenting. +The Disqus node allows you to automate work in Disqus, and integrate Disqus with other applications. n8n has built-in support for a wide range of Disqus features, including returning forums. + +On this page, you'll find a list of operations the Disqus node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/disqus/). + Refer to [Disqus credentials](/integrations/builtin/credentials/disqus/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Disqus integrations](https://n8n.io/integrations/disqus/){:target="_blank" .external-link} list. ## Basic Operations 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 0877b048c..32d86d303 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.drift.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.drift.md @@ -1,9 +1,14 @@ # Drift -[Drift](https://www.drift.com/) is a tool for managing conversations, engaging with customers, and collaborating with teammates. +The Drift node allows you to automate work in Drift, and integrate Drift with other applications. n8n has built-in support for a wide range of Drift features, including creating, updating, deleting, and getting contacts. + +On this page, you'll find a list of operations the Drift node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/drift/). + Refer to [Drift credentials](/integrations/builtin/credentials/drift/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Drift integrations](https://n8n.io/integrations/drift/){:target="_blank" .external-link} list. ## Basic Operations 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 c5f557432..4c73ef3f2 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropbox.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropbox.md @@ -1,9 +1,14 @@ # Dropbox -[Dropbox](https://dropbox.com) is a cloud-based file storage and sharing service, accessible through multiple devices. +The Dropbox node allows you to automate work in Dropbox, and integrate Dropbox with other applications. n8n has built-in support for a wide range of Dropbox features, including creating, downloading, moving, and copying files and folders. + +On this page, you'll find a list of operations the Dropbox node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/dropbox/). + Refer to [Dropbox credentials](/integrations/builtin/credentials/dropbox/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Dropbox integrations](https://n8n.io/integrations/dropbox/){:target="_blank" .external-link} list. ## Basic Operations 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 c6f8b638c..770ae39f5 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropcontact.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropcontact.md @@ -1,11 +1,14 @@ # Dropcontact -[Dropcontact](https://www.dropcpontact.com) is an email finder platform that allows you to automatically find, verify and validate nominative emails and enrich your contacts with all efficient information to contact him. - +The Dropcontact node allows you to automate work in Dropcontact, and integrate Dropcontact with other applications. n8n has built-in support for a wide range of Dropcontact features, including fetching contacts. +On this page, you'll find a list of operations the Dropcontact node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/dropcontact/). + Refer to [Dropcontact credentials](/integrations/builtin/credentials/dropcontact/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Dropcontact integrations](https://n8n.io/integrations/dropcontact/){:target="_blank" .external-link} list. ## Basic Operations 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 b39ffc352..f3e21fae6 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.egoi.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.egoi.md @@ -1,9 +1,14 @@ # E-goi -[E-goi](https://www.e-goi.com/) is an omnichannel marketing automation platform. +The E-goi node allows you to automate work in E-goi, and integrate E-goi with other applications. n8n has built-in support for a wide range of E-goi features, including creating, updating, deleting, and getting contacts. + +On this page, you'll find a list of operations the E-goi node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/egoi/). + Refer to [E-goi credentials](/integrations/builtin/credentials/egoi/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [E-goi integrations](https://n8n.io/integrations/e-goi/){:target="_blank" .external-link} list. ## Basic Operations 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 721129e18..f2d1131d2 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsearch.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsearch.md @@ -1,9 +1,14 @@ # Elasticsearch -[Elasticsearch](https://www.elastic.co/) is a distributed, free and open search and analytics engine for all types of data, including textual, numerical, geospatial, structured, and unstructured. +The Elasticsearch node allows you to automate work in Elasticsearch, and integrate Elasticsearch with other applications. n8n has built-in support for a wide range of Elasticsearch features, including creating, updating, deleting, and getting documents and indexes. + +On this page, you'll find a list of operations the Elasticsearch node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/elasticsearch/). + Refer to [Elasticsearch credentials](/integrations/builtin/credentials/elasticsearch/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Elasticsearch integrations](https://n8n.io/integrations/elasticsearch/){:target="_blank" .external-link} list. ## Basic operations 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 421045907..2a37d6b7b 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsecurity.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsecurity.md @@ -1,10 +1,14 @@ # Elastic Security -[Elastic Security](https://www.elastic.co/security) helps security teams stop threats and at cloud scale, assisting with prevention, detection, and response. +The Elastic Security node allows you to automate work in Elastic Security, and integrate Elastic Security with other applications. n8n's has built-in support for a wide range of Elastic Security features, including creating, updating, deleting, retrieving, and getting cases. + +On this page, you'll find a list of operations the Elastic Security node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/elasticsecurity/). + Refer to [Elastic Security credentials](/integrations/builtin/credentials/elasticsecurity/) for guidance on setting up authentication. +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Elastic Security integrations](https://n8n.io/integrations/elastic-security){:target="_blank" .external-link} list. ## Basic operations 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 41e77d193..6595af1cc 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.emelia.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.emelia.md @@ -1,9 +1,14 @@ # Emelia -[Emelia](https://emelia.io) is a cold-mailing tool. +The Emelia node allows you to automate work in Emelia, and integrate Emelia with other applications. n8n has built-in support for a wide range of Emelia features, including adding, creating, getting, and pausing campaigns and contact lists. + +On this page, you'll find a list of operations the Emelia node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/emelia/). + Refer to [Emelia credentials](/integrations/builtin/credentials/emelia/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Emelia integrations](https://n8n.io/integrations/emelia/){:target="_blank" .external-link} list. ## Basic Operations 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 6be1b6bda..d90d878d0 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.erpnext.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.erpnext.md @@ -1,9 +1,14 @@ # ERPNext -[ERPNext](https://erpnext.com) is an open-source integrated Enterprise Resource Planning software. It is a generic ERP software used by manufacturers, distributors, and services companies. +The ERPNext node allows you to automate work in ERPNext, and integrate ERPNext with other applications. n8n has built-in support for a wide range of ERPNext features, including creating, updating, retrieving, and deleting documents. + +On this page, you'll find a list of operations the ERPNext node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/erpnext/). + Refer to [ERPNext credentials](/integrations/builtin/credentials/erpnext/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [ERPNext integrations](https://n8n.io/integrations/erpnext/){:target="_blank" .external-link} list. ## Basic Operations 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 49ff36407..12bb4a860 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.facebookgraphapi.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.facebookgraphapi.md @@ -1,9 +1,14 @@ # Facebook Graph API -[Facebook](https://www.facebook.com/) is a social networking site that makes it easy to connect and share with family and friends online. +The Facebook Graph API node allows you to automate work in Facebook Graph API, and integrate Facebook Graph API with other applications. n8n has built-in support for a wide range of Facebook Graph API features, including using queries GET POST DELETE for several parameters like host URL, request methods and much more. + +On this page, you'll find a list of operations the Facebook Graph API node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/facebookgraph/). + Refer to [Facebook Graph API credentials](/integrations/builtin/credentials/facebookgraph/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Facebook Graph API integrations](https://n8n.io/integrations/facebookgraph/){:target="_blank" .external-link} list. ## Basic operations 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 43a10a1be..03f52f5d4 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.filemaker.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.filemaker.md @@ -1,9 +1,14 @@ # FileMaker -[FileMaker](https://www.claris.com/filemaker/) is an integrated Enterprise Resource Planning software. It is a generic ERP software used by manufacturers, distributors, and service companies. +The FileMaker node allows you to automate work in FileMaker, and integrate FileMaker with other applications. n8n has built-in support for a wide range of FileMaker features, including creating, finding, getting, editing, and duplicating files. + +On this page, you'll find a list of operations the FileMaker node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/filemaker/). + Refer to [FileMaker credentials](/integrations/builtin/credentials/filemaker/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [FileMaker integrations](https://n8n.io/integrations/filemaker/){:target="_blank" .external-link} list. ## Basic Operations 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 cdee83e31..c15fada24 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.flow.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.flow.md @@ -1,9 +1,14 @@ # Flow -[Flow](https://www.getflow.com/) is modern task and project management software for teams. It brings together tasks, projects, timelines, and conversations, and integrates with a lot of tools. +The Flow node allows you to automate work in Flow, and integrate Flow with other applications. n8n has built-in support for a wide range of Flow features, including creating, updating, and getting tasks. + +On this page, you'll find a list of operations the Flow node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/flow/). + Refer to [Flow credentials](/integrations/builtin/credentials/flow/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Flow integrations](https://n8n.io/integrations/flow/){:target="_blank" .external-link} list. ## Basic Operations 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 40dad050b..51dce8031 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshdesk.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshdesk.md @@ -1,9 +1,14 @@ # Freshdesk -[Freshdesk](https://freshdesk.com/) is a customer support software also classified as a ticketing software or a helpdesk that allows companies to effectively manage their customer care and support function. +The Freshdesk node allows you to automate work in Freshdesk and integrate Freshdesk with other applications. n8n has built-in support for a wide range of Freshdesk features, including creating, updating, deleting, and getting contacts and tickets. + +On this page, you'll find a list of operations the Freshdesk node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/freshdesk/). + Refer to [Freshdesk credentials](/integrations/builtin/credentials/freshdesk/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Freshdesk integrations](https://n8n.io/integrations/freshdesk/){:target="_blank" .external-link} list. ## Basic Operations 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 38bc17a96..86ec6b658 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshservice.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshservice.md @@ -1,9 +1,14 @@ # Freshservice -[Freshservice](https://www.freshservice.com/) is a cloud-based IT Service Management solution. +The Freshservice node allows you to automate work in Freshservice and integrate Freshservice with other applications. n8n has built-in support for a wide range of Freshdesk features, including creating, updating, deleting, and getting agent information and departments. + +On this page, you'll find a list of operations the Freshservice node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/freshservice/). + Refer to [Freshservice credentials](/integrations/builtin/credentials/freshservice/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Freshservice integrations](https://n8n.io/integrations/freshservice/){:target="_blank" .external-link} list. ## Basic operations 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 5c74f679b..62a64f8d7 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshworkscrm.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshworkscrm.md @@ -1,9 +1,14 @@ # Freshworks CRM -[Freshworks CRM](https://www.freshworks.com/freshsales-crm/) is a cloud-based customer relationship management (CRM) solution that helps businesses manage their interactions with existing and potential customers. +The Freshworks CRM node allows you to automate work in Freshworks CRM, and integrate Freshworks CRM with other applications. n8n has built-in support for a wide range of Freshworks CRM features, including creating, updating, deleting, and retrieve, accounts, appointments, contacts, deals, notes, sales activity and more. + +On this page, you'll find a list of operations the Freshworks CRM node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/freshworkscrm/). + Refer to [Freshworks CRM credentials](/integrations/builtin/credentials/freshworkscrm/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Freshworks CRM integrations](https://n8n.io/integrations/freshworks-crm/){:target="_blank" .external-link} list. ## Basic operations 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 361a16667..d6f676cdd 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.getresponse.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.getresponse.md @@ -1,9 +1,14 @@ # GetResponse -[GetResponse](https://www.getresponse.com/) is an online platform that offers email marketing software, landing page creator, webinar hosting, and much more. +The GetResponse node allows you to automate work in GetResponse, and integrate GetResponse with other applications. n8n has built-in support for a wide range of GetResponse features, including creating, updating, deleting, and getting contacts. + +On this page, you'll find a list of operations the GetResponse node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/getresponse/). + Refer to [GetResponse credentials](/integrations/builtin/credentials/getresponse/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [GetResponse integrations](https://n8n.io/integrations/getresponse/){:target="_blank" .external-link} list. 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 4179563aa..c4b24de7b 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.ghost.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.ghost.md @@ -1,9 +1,14 @@ # Ghost -[Ghost](https://www.ghost.org/) is an open-source, professional publishing platform built on a Node.js technology stack. +The Ghost node allows you to automate work in Ghost, and integrate Ghost with other applications. n8n has built-in support for a wide range of Ghost features, including creating, updating, deleting, and getting posts for the Admin and content API. + +On this page, you'll find a list of operations the Ghost node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/ghost/). + Refer to [Ghost credentials](/integrations/builtin/credentials/ghost/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Ghost integrations](https://n8n.io/integrations/ghost/){:target="_blank" .external-link} list. ## Basic Operations 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 0482ec779..1ac5b94d1 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.github.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.github.md @@ -1,9 +1,14 @@ # GitHub -[GitHub](https://github.com/) provides hosting for software development and version control using Git. It offers the distributed version control and source code management (SCM) functionality of Git, access control and several collaboration features such as bug tracking, feature requests, task management, and wikis for every project. +The GitHub node allows you to automate work in GitHub, and integrate GitHub with other applications. n8n has built-in support for a wide range of GitHub features, including creating, updating, deleting, and editing files, repositories, issues, releases, and users. + +On this page, you'll find a list of operations the GitHub node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/github/). + Refer to [GitHub credentials](/integrations/builtin/credentials/github/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [GitHub integrations](https://n8n.io/integrations/github/){:target="_blank" .external-link} list. ## Basic Operations 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 b80add806..caf1bd35f 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gitlab.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gitlab.md @@ -1,9 +1,14 @@ # GitLab -[GitLab](https://gitlab.com/) is a web-based DevOps lifecycle tool that provides a Git-repository manager providing wiki, issue-tracking, and continuous integration/continuous installation pipeline features. +The GitLab node allows you to automate work in GitLab, and integrate GitLab with other applications. n8n has built-in support for a wide range of GitLab features, including creating, updating, deleting, and editing issues, repositories, releases and users. + +On this page, you'll find a list of operations the GitLab node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/gitlab/). + Refer to [GitLab credentials](/integrations/builtin/credentials/gitlab/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [GitLab integrations](https://n8n.io/integrations/gitlab/){:target="_blank" .external-link} list. ## Basic Operations 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 f0e976206..fd19b4b82 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gmail.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gmail.md @@ -1,9 +1,14 @@ # Gmail -[Gmail](https://www.gmail.com){:target=_blank .external-link} is an email service developed by Google. +The Gmail node allows you to automate work in Gmail, and integrate Gmail with other applications. n8n has built-in support for a wide range of Gmail features, including creating, updating, deleting, and getting drafts, messages, labels, thread. + +On this page, you'll find a list of operations the Gmail node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Gmail credentials](/integrations/builtin/credentials/gmail/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Gmail integrations](https://n8n.io/integrations/gmail/){:target="_blank" .external-link} list. ## Operations 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 957e39324..0bdb6208e 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleads.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleads.md @@ -1,12 +1,18 @@ -# Google Ads node +# Google Ads -[Google Ads](https://ads.google.com/){:targe=_blank .external-link} is a digital advertising service. +The Google Ads node allows you to automate work in Google Ads, and integrate Google Ads with other applications. n8n has built-in support for a wide range of Google Ads features, including getting campaigns. + +On this page, you'll find a list of operations the Google Ads node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Ads credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Ads integrations](https://n8n.io/integrations/google-ads/){:target="_blank" .external-link} list. + ## Basic operations * Campaign * Get all campaigns - * Get a campaign \ No newline at end of file + * Get a campaign 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 a3f770b7a..37f47210f 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleanalytics.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleanalytics.md @@ -1,11 +1,15 @@ # Google Analytics -[Google Analytics](https://analytics.google.com/){:target="_blank" .external-link} node allows you to automate work in the Google Analytics platform and integrate Google Analytics with other applications. n8n has built-in support for a wide range of Google Analytics features, which includes basic operations like returning reports and user activities. +The Google Analytics node allows you to automate work in Google Analytics, and integrate Google Analytics with other applications. n8n has built-in support for a wide range of Google Analytics features, including returning reports and user activities. + On this page, you'll find a list of operations the Google Analytics node supports and links to more resources. !!! note "Credentials" - Refer to the [Google Analytics credentials](https://docs.n8n.io/integrations/builtin/credentials/google/) for guidance on setting up authentication. + Refer to [Google Analytics credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Analytics integrations](https://n8n.io/integrations/google-analytics/){:target="_blank" .external-link} list. ## Operations 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 efe0232c3..be1596392 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebigquery.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebigquery.md @@ -1,9 +1,14 @@ # Google BigQuery -[Google BigQuery](https://cloud.google.com/bigquery/) is a fully-managed, serverless data warehouse that enables scalable analysis over petabytes of data. It is a Platform as a Service that supports querying using ANSI SQL. +The Google BigQuery node allows you to automate work in Google BigQuery, and integrate Google BigQuery with other applications. n8n has built-in support for a wide range of Google BigQuery features, including creating, and retrieving records. + +On this page, you'll find a list of operations the Google BigQuery node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google BigQuery credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google BigQuery integrations](https://n8n.io/integrations/google-bigquery/){:target="_blank" .external-link} list. ## Basic Operations 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 4afee3077..45a531583 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebooks.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebooks.md @@ -1,9 +1,14 @@ # Google Books -[Google Books](https://books.google.com) is a service from Google to browse, buy, or borrow books online. +The Google Books node allows you to automate work in Google Books, and integrate Google Books with other applications. n8n has built-in support for a wide range of Google Books features, including retrieving, getting and removing bookshelf resources and volume. + +On this page, you'll find a list of operations the Google Books node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Books credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Books integrations](https://n8n.io/integrations/google-books/){:target="_blank" .external-link} list. ## Basic Operations 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 1c26c393d..020758d24 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar.md @@ -1,9 +1,14 @@ # Google Calendar -[Google Calendar](https://www.google.com/calendar/) is a time-management and scheduling calendar service developed by Google. +The Google Calendar node allows you to automate work in Google Calendar, and integrate Google Calendar with other applications. n8n has built-in support for a wide range of Google Calendar features, including adding, retrieving, deleting and updating calendar events. + +On this page, you'll find a list of operations the Google Calendar node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Calendar credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Calendar integrations](https://n8n.io/integrations/google-calendar/){:target="_blank" .external-link} list. ## Basic Operations 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 a8db7e7ae..14b18b1c5 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlechat.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlechat.md @@ -1,9 +1,14 @@ # Google Chat -[Google Chat](https://chat.google.com/) is a messaging platform. +The Google Chat node allows you to automate work in Google Chat, and integrate Google Chat with other applications. n8n has built-in support for a wide range of Google Chat features, including getting, creating, updating, and deleting memebers, spaces and messages. + +On this page, you'll find a list of operations the Google Chat node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Chat credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Chat integrations](https://n8n.io/integrations/google-chat/){:target="_blank" .external-link} list. ## Basic Operations 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 8a225a7f1..0e8e70a2c 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudfirestore.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudfirestore.md @@ -1,9 +1,14 @@ # Google Cloud Firestore -[Google Cloud Firestore](https://firebase.google.com/docs/firestore/) is a flexible, scalable database for mobile, web, and server development from Firebase and Google Cloud. It keeps your data in-sync across client apps through real-time listeners and offers offline support for mobile and web. +The Google Cloud Firestore node allows you to automate work in Google Cloud Firestore, and integrate Google Cloud Firestore with other applications. n8n has built-in support for a wide range of Google Cloud Firestore features, including creating, deleting, and getting documents and collections. + +On this page, you'll find a list of operations the Google Cloud Firestore node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Cloud Firestore credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Cloud Firestore integrations](https://n8n.io/integrations/google-cloud-firestore/){:target="_blank" .external-link} list. ## Basic Operations 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 853f9f3c4..b93cc8a32 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudnaturallanguage.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudnaturallanguage.md @@ -1,9 +1,14 @@ # Google Cloud Natural Language -[Google Cloud Natural Language](https://cloud.google.com/natural-language/) uses machine learning to reveal the structure and meaning of text. You can extract information about people, places, and events, and better understand social media sentiment and customer conversations. +The Google Cloud Natural Language node allows you to automate work in Google Cloud Natural Language, and integrate Google Cloud Natural Language with other applications. n8n has built-in support for a wide range of Google Cloud Natural Language features, including analyzing documents. + +On this page, you'll find a list of operations the Google Cloud Natural Language node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Cloud Natural Language credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Cloud Natural Language integrations](https://n8n.io/integrations/google-cloud-natural-language/){:target="_blank" .external-link} list. ## Basic Operations 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 c3a86a53e..9be0b1617 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudrealtimedatabase.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudrealtimedatabase.md @@ -1,9 +1,14 @@ # Google Cloud Realtime Database -[Google Cloud Realtime Database](https://firebase.google.com/docs/database/) is a cloud-hosted database. Data is stored as JSON and synchronized in realtime to every connected client. +The Google Cloud Realtime Database node allows you to automate work in Google Cloud Realtime Database, and integrate Google Cloud Realtime Database with other applications. n8n has built-in support for a wide range of Google Cloud Realtime Database features, including writing, deleting, getting, and appending databases. + +On this page, you'll find a list of operations the Google Cloud Realtime Database node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Cloud Realtime Database credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Cloud Realtime Database integrations](https://n8n.io/integrations/google-cloud-realtime-database/){:target="_blank" .external-link} list. ## Basic Operations 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 2d81d5e2f..6c6291242 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudstorage.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudstorage.md @@ -1,9 +1,14 @@ # Google Cloud Storage -[Google Cloud Storage](https://cloud.google.com/storage){:target=_blank .external-link} offers object storage for data, with flexible capacity and retrieval. +The Google Cloud Storage node allows you to automate work in Google Cloud Storage, and integrate Google Cloud Storage with other applications. n8n has built-in support for a wide range of Google Cloud Storage features, including creating, updating, deleting, and getting buckets and objects. + +On this page, you'll find a list of operations the Google Cloud Storage node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Cloud Storage credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Cloud Storage integrations](https://n8n.io/integrations/google-cloud-storage/){:target="_blank" .external-link} list. ## Operations 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 37ade402d..45066cfe3 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecontacts.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecontacts.md @@ -1,9 +1,14 @@ # Google Contacts -[Google Contacts](https://contacts.google.com/) is Google's contact management tool that is available in its free email service Gmail, as a standalone service, and as a part of Google's business-oriented suite of web apps Google Apps. +The Google Contacts node allows you to automate work in Google Contacts, and integrate Google Contacts with other applications. n8n has built-in support for a wide range of Google Contacts features, including creating, updating, retrieving, deleting, and getting contacts. + +On this page, you'll find a list of operations the Google Contacts node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Contacts credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Contacts integrations](https://n8n.io/integrations/google-contacts/){:target="_blank" .external-link} list. 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 74586c1f8..3db83b902 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledocs.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledocs.md @@ -1,9 +1,14 @@ # Google Docs -[Google Docs](https://docs.google.com) is a web-based word processor that is part of Google's office software suite within its Google Drive service. +The Google Docs node allows you to automate work in Google Docs, and integrate Google Docs with other applications. n8n has built-in support for a wide range of Google Docs features, including creating, updating, and getting documents. + +On this page, you'll find a list of operations the Google Docs node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Docs credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + Fo usage examples and templates to help you get started, take a look at n8n's [Google Docs integrations](https://n8n.io/integrations/google-docs/){:target="_blank" .external-link} list. ## Basic operations 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 3bcda31ab..4a6ad06eb 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledrive.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledrive.md @@ -1,9 +1,14 @@ # Google Drive -[Google Drive](https://drive.google.com) is a file storage and synchronization service developed by Google. It allows users to store files on their servers, synchronize files across devices, and share files. +The Google Drive node allows you to automate work in Google Drive, and integrate Google Drive with other applications. n8n has built-in support for a wide range of Google Drive features, including creating, updating, listing, deleting, and getting drives, files, and folders. + +On this page, you'll find a list of operations the Google Drive node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Drive credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Drive integrations](https://n8n.io/integrations/google-drive/){:target="_blank" .external-link} list. ## Basic Operations 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 da1298973..2bae7abf0 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleperspective.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleperspective.md @@ -1,10 +1,14 @@ # Google Perspective -[Google Perspective](https://www.perspectiveapi.com/) is a free API that uses machine learning to identify "toxic" comments, making it easier to host better conversations online. +The Google Perspective node allows you to automate work in Google Perspective, and integrate Google Perspective with other applications. n8n has built-in support for a wide range of Google Perspective features, including analyzing comments. + +On this page, you'll find a list of operations the Google Perspective node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Perspective credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Perspective integrations](https://n8n.io/integrations/google-perspective/){:target="_blank" .external-link} list. ## Basic operations 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 afbbd2717..75a6e0b4a 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets.md @@ -1,25 +1,29 @@ # Google Sheets -[Google Sheets](https://www.google.com/sheets){:target=_blank} is a web-based spreadsheet program that's part of Google's office software suite within its Google Drive service. +The Google Sheets node allows you to automate work in Google Sheets, and integrate Google Sheets with other applications. n8n has built-in support for a wide range of Google Sheets features, including creating, updating, deleting, appending, removing and getting documents. + +On this page, you'll find a list of operations the Google Sheets node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Sheets credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Sheets integrations](https://n8n.io/integrations/google-sheets/){:target="_blank" .external-link} list. ## Operations * Document - * Create + * Create * Delete * Sheet within document - * Append: append data to a sheet * Append or update: append a new row, or update the current one if it already exists. - * Clear: clear all data from a sheet - * Create: create a new sheet - * Delete: delete columns and rows from a sheet - * Read rows: read all rows in a sheet. - * Remove: remove a sheet - * Update: update rows in a sheet + * Clear: clear all data from a sheet + * Create: create a new sheet + * Delete: delete columns and rows from a sheet + * Read rows: read all rows in a sheet. + * Remove: remove a sheet + * Update: update rows in a sheet ## Related resources @@ -72,6 +76,9 @@ To read from a sheet: 3. In **Operation**, select **Read Rows**. 4. Choose the **Document** and **Sheet** you want to read from. +!!! note "First row" + n8n treats the first row in a Google Sheet as a heading row, and doesn't return it when reading all rows. If you want to read the first row, use the **Options** to set **Data Location on Sheet**. + ### Filters By default, the Google Sheets node reads and returns all rows in the sheet. To return a limited set of results: 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 65013bcca..ca0b29b57 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleslides.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleslides.md @@ -1,9 +1,14 @@ # Google Slides -[Google Slides](https://www.google.com/slides) is a web-based presentation program that is part of Google's office software suite within its Google Drive service. It allows you to create, edit, and collaborate. +The Google Slides node allows you to automate work in Google Slides, and integrate Google Slides with other applications. n8n has built-in support for a wide range of Google Slides features, including creating, getting and replacing pages and presentation. + +On this page, you'll find a list of operations the Google Slides node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Slides credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Slides integrations](https://n8n.io/integrations/google-slides/){:target="_blank" .external-link} list. ## Basic Operations 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 69f0de9f8..4676f211f 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletasks.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletasks.md @@ -1,9 +1,14 @@ # Google Tasks -[Google Tasks](https://tasks.google.com) is a task management service developed by Google. It keeps track of your daily tasks, organize multiple lists, and track important deadlines. +The Google Tasks node allows you to automate work in Google Tasks, and integrate Google Tasks with other applications. n8n has built-in support for a wide range of Google Tasks features, including adding, updating, and retrieving contacts. + +On this page, you'll find a list of operations the Google Tasks node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Tasks credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Tasks integrations](https://n8n.io/integrations/google-tasks/){:target="_blank" .external-link} list. ## Basic Operations 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 e57a724f9..6ac163b02 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletranslate.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletranslate.md @@ -1,9 +1,14 @@ # Google Translate -[Google Translate](https://translate.google.com/) is a free multilingual translation service developed by Google to translate text and websites from one language into another. +The Google Translate node allows you to automate work in Google Translate, and integrate Google Translate with other applications. n8n has built-in support for a wide range of Google Translate features, including translating languages. + +On this page, you'll find a list of operations the Google Translate node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [Google Translate credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Google Translate integrations](https://n8n.io/integrations/google-translate/){:target="_blank" .external-link} list ## Basic Operations 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 26fae4cfd..d7cce17f0 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotify.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotify.md @@ -1,9 +1,14 @@ # Gotify -[Gotify](https://gotify.net/) is a server for sending and receiving messages. +The Gotify node allows you to automate work in Gotify, and integrate Gotify with other applications. n8n has built-in support for a wide range of Gotify features, including creating, deleting, and getting messages. + +On this page, you'll find a list of operations the Gotify node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/gotify/). + Refer to [Gotify credentials](/integrations/builtin/credentials/gotify/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Gotify integrations](https://n8n.io/integrations/gotify/){:target="_blank" .external-link} list. ## Basic Operations 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 44a60521d..856447d61 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotowebinar.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotowebinar.md @@ -1,9 +1,14 @@ # GoToWebinar -[GoToWebinar](https://www.gotomeeting.com/webinar) is a platform that helps you create and deliver online video conferences. +The GoToWebinar node allows you to automate work in GoToWebinar, and integrate GoToWebinar with other applications. n8n has built-in support for a wide range of GoToWebinar features, including creating, getting, and deleting attendees, organizers, and registrants. + +On this page, you'll find a list of operations the GoToWebinar node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/gotowebinar/). + Refer to [GoToWebinar credentials](/integrations/builtin/credentials/gotowebinar/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [GoToWebinar integrations](https://n8n.io/integrations/gotowebinar/){:target="_blank" .external-link} list. ## Basic Operations 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 6110abb97..ac3f56750 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.grafana.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.grafana.md @@ -1,9 +1,14 @@ # Grafana -[Grafana](https://grafana.com/) is a multi-platform open source analytics and interactive visualization web application. It provides charts, graphs, and alerts for the web when connected to supported data sources. +The Grafana node allows you to automate work in Grafana, and integrate Grafana with other applications. n8n has built-in support for a wide range of Grafana features, including creating, updating, deleting, and getting dashboards, teams, and users. + +On this page, you'll find a list of operations the Grafana node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/grafana/). + Refer to [Grafana credentials](/integrations/builtin/credentials/grafana/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Grafana integrations](https://n8n.io/integrations/grafana/){:target="_blank" .external-link} list. ## Basic Operations 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 f56b37399..dbafd5707 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.grist.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.grist.md @@ -1,9 +1,14 @@ # Grist -[Grist](https://getgrist.com/) combines the flexibility of a spreadsheet with the robustness of a database to organize your data, your way. +The Grist node allows you to automate work in Grist, and integrate Grist with other applications. n8n has built-in support for a wide range of Grist features, including creating, updating, deleting, and reading rows in a table. + +On this page, you'll find a list of operations the Grist node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/grist/). + Refer to [Grist credentials](/integrations/builtin/credentials/grist/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Grist integrations](https://n8n.io/integrations/grist/){:target="_blank" .external-link} list. ## Basic operations 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 7d5843384..0acd0d231 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gsuiteadmin.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gsuiteadmin.md @@ -1,9 +1,15 @@ # G Suite Admin -[G Suite Admin](https://developers.google.com/admin-sdk) helps you administer domain and app resources, create reports, and manage subscriptions and alerts for your G Suite organization. +The G Suite Admin node allows you to automate work in G Suite Admin, and integrate G Suite Admin with other applications. n8n has built-in support for a wide range of G Suite Admin features, including creating, updating, deleting, and getting users, and groups. + +On this page, you'll find a list of operations the G Suite Admin node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/google/). + Refer to [G Suite Admin credentials](/integrations/builtin/credentials/google/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [G Suite Admin integrations](https://n8n.io/integrations/google-workspace-admin/){:target="_blank" .external-link} list. + ## Basic Operations 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 94ba9e811..8444779b9 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.hackernews.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.hackernews.md @@ -1,9 +1,14 @@ # Hacker News -[Hacker News](https://news.ycombinator.com/) is a social news website focusing on computer science and entrepreneurship. +The Hacker News node allows you to automate work in Hacker News, and integrate Hacker News with other applications. n8n has built-in support for a wide range of Hacker News features, including getting articles, and users. + +On this page, you'll find a list of operations the Hacker News node supports and links to more resources. !!! note "Credentials" - The Hacker News node does not require authentication. + This node doesn't require authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [Hacker News integrations](https://n8n.io/integrations/hacker-news/){:target="_blank" .external-link} list. ## Basic Operations 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 5f0b092d3..efa0fd249 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.halopsa.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.halopsa.md @@ -1,9 +1,14 @@ # HaloPSA -[HaloPSA](https://halopsa.com/) is a intuitive PSA software. Standardise your processes and keep your customers at the center of every conversation. +The HaloPSA node allows you to automate work in HaloPSA, and integrate HaloPSA with other applications. n8n has built-in support for a wide range of HaloPSA features, including creating, updating, deleting, and getting clients, sites and tickets. + +On this page, you'll find a list of operations the HaloPSA node supports and links to more resources. !!! note "Credentials" - You can find authentication information for this node [here](/integrations/builtin/credentials/halopsa/). + Refer to [HaloPSA credentials](/integrations/builtin/credentials/halopsa/) for guidance on setting up authentication. + +!!! note "Examples and templates" + For usage examples and templates to help you get started, take a look at n8n's [HaloPSA integrations](https://n8n.io/integrations/halopsa/){:target="_blank" .external-link} list. ## Basic Operations diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.readbinaryfile.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.readbinaryfile.md deleted file mode 100644 index b0f56927b..000000000 --- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.readbinaryfile.md +++ /dev/null @@ -1,35 +0,0 @@ -# Read Binary File - -The Read Binary File node is used to read a file from the host machine that runs n8n. - -!!! note "Keep in mind" - 1. If you are running n8n in Docker, your command will run on the n8n container and not the Docker host. - - 2. This node will look for files relative to the n8n install path. It is recommended to use absolute file paths to prevent any errors. - - -## Node Reference - -1. **File Path** field: This field specifies the path to the file. -2. **Property Name** field: Name of the binary property to which to write the data of the read file. - -## Example Usage - -This workflow allows you to read a file from the host machine using the Read Binary File node. You can also find the [workflow](https://n8n.io/workflows/577) on the website. This example usage workflow would use the following two nodes. - -- [Start](/integrations/builtin/core-nodes/n8n-nodes-base.start/) -- [Read Binary File]() - - -The final workflow should look like the following image. - -![A workflow with the Read Binary File node](/_images/integrations/builtin/core-nodes/readbinaryfile/workflow.png) - -### 1. Start node - -The start node exists by default when you create a new workflow. - -### 2. Read Binary File node - -1. Enter the path to the file you want to read in the **File Path** field. -2. Click on **Execute Node** to run the workflow. diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.readbinaryfiles.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.readbinaryfiles.md index cc843eb03..7d6722172 100644 --- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.readbinaryfiles.md +++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.readbinaryfiles.md @@ -1,39 +1,20 @@ # Read Binary Files -The Read Binary Files node is used to read multiple files from the host machine that runs n8n. +The Read Binary Files node reads files from the host machine that runs n8n. -!!! note "Keep in mind" - 1. If you are running n8n in Docker, your command will run on the n8n container and not the Docker host. -2. This node will look for files relative to the n8n install path. It is recommended to use absolute file paths to prevent any errors. +!!! note "Examples and templates" + For usage examples and templates to help you get started, refer to n8n's [Read Binary Files integrations](https://n8n.io/integrations/read-binary-files/){:target=_blank .external-link} list. -## Node Reference +## Related resources -1. *File Selector* field: This is a field that is used to specify the type of files to be read. For example, `*.jpg`. -2. *Property Name* field: Name of the binary property to which to write the data of the read files. +View [example workflows and related content](https://n8n.io/integrations/read-binary-files/){:target=_blank .external-link} on n8n's website. -It is also possible to select files from a certain directory, by specifying the path in the *File Selector* field. For example, `/data/folder/*.jpg`. +## File locations -## Example Usage - -This workflow allows you to read multiple files from the host machine using the Read Binary Files node. You can also find the [workflow](https://n8n.io/workflows/578) on the website. This example usage workflow would use the following two nodes. -- [Start](/integrations/builtin/core-nodes/n8n-nodes-base.start/) -- [Read Binary Files]() - - -The final workflow should look like the following image. - -![A workflow with the Read Binary Files node](/_images/integrations/builtin/core-nodes/readbinaryfiles/workflow.png) - -### 1. Start node - -The start node exists by default when you create a new workflow. - -### 2. Read Binary Files node - -1. Enter the type of files you want to read in the *File Selector* field. -2. Click on *Execute Node* to run the workflow. +If you run n8n in Docker, your command runs in the n8n container and not the Docker host. +This node looks for files relative to the n8n install path. n8n recommends using absolute file paths to prevent any errors. diff --git a/docs/integrations/builtin/credentials/hubspot.md b/docs/integrations/builtin/credentials/hubspot.md index 5e3e3522e..db6b07a24 100644 --- a/docs/integrations/builtin/credentials/hubspot.md +++ b/docs/integrations/builtin/credentials/hubspot.md @@ -5,32 +5,30 @@ You can use these credentials to authenticate the following nodes with HubSpot. - [HubSpot](/integrations/builtin/app-nodes/n8n-nodes-base.hubspot/) - [HubSpot Trigger](/integrations/builtin/trigger-nodes/n8n-nodes-base.hubspottrigger/) +!!! note "API key deprecated" + HubSpot deprecated the API key authentication method. The option still appears in n8n, but you should use OAuth or APP Token. + ## Prerequisites -Create a [HubSpot](https://www.hubspot.com/) account. +Create a [HubSpot](https://www.hubspot.com/){:target=_blank .external-link} account. ## Using OAuth !!! note "Note for n8n Cloud users" - You'll only need to enter the Credentials Name and click on the circle button in the OAuth section to connect your HubSpot account to n8n. + You can skip these steps. Enter the credential name, then select **Connect my account** in the OAuth section to connect your HubSpot account to n8n. -!!! warning "⚠ HubSpot old accounts" - Some HubSpot accounts don't have access to all the scopes. HubSpot is migrating accounts gradually. If you can't' find all the scopes in your current HubSpot developer account, try creating a fresh developer account. +!!! warning "HubSpot old accounts" + Some HubSpot accounts don't have access to all the scopes. HubSpot is migrating accounts gradually. If you can't find all the scopes in your current HubSpot developer account, try creating a fresh developer account. -1. Access your [HubSpot Developer Home](https://developers.hubspot.com/). -2. Click on the **Manage apps** button. -3. Click on the **Create app** button in the top right. -4. Specify an app name in the **Public app name** field. -5. Click on the 'Auth' tab. -6. Use the provided **Client ID** and the **Client secret** with your HubSpot OAuth2 API credentials in n8n. -7. If you are using the [HubSpot Trigger](/integrations/builtin/trigger-nodes/n8n-nodes-base.hubspottrigger/) node, copy the **App ID** along with the information in the previous step. -8. Copy your OAuth Callback URL from the 'Create New Credentials' screen in n8n and paste in the **Redirect URL** section. - - !!! note "Exact scope needed" - If you grant access to more or less scopes than listed below, this might cause an issue with the authentication step. Make sure to only include what is listed below. - +1. Access your [HubSpot Developer Home](https://developers.hubspot.com/){:target=_blank .external-link}. +2. Select **Manage apps**. +3. Select **Create app**. +4. Enter an app name in **Public app name**. +5. Select the **Auth** tab. +6. Use the provided **Client ID** and the **Client secret** with your HubSpot OAuth2 API credentials in n8n. If you're using the [HubSpot Trigger](/integrations/builtin/trigger-nodes/n8n-nodes-base.hubspottrigger/) node, copy the **App ID** along with the information in the previous step. +8. Copy your OAuth Callback URL from the **Create New Credentials** screen in n8n and paste in the **Redirect URL** section in HubSpot 9. In the Scopes section, select the following scopes in the **Find a scope** search box: * Trigger node: * oauth @@ -54,30 +52,16 @@ Create a [HubSpot](https://www.hubspot.com/) account. * crm.schemas.companies (read), * forms, * tickets, -10. Click on the **Save** button to save your settings in HubSpot. -11. Back in n8n, click on the circle button in the OAuth section to connect your HubSpot account to n8n. + + !!! note "Exact scope needed" + If you grant access to more or less scopes than listed above, this can cause an issue with the authentication step. + +10. Select **Save** to save your settings in HubSpot. +11. In n8n, select **Connect my account** in the OAuth section to connect your HubSpot account to n8n. 12. Click the **Save** button to save your credentials. -## Using API key - -1. Access your HubSpot dashboard. -2. Click on the gear icon on the top right. -3. Click on **Integrations** and then **API key**. -4. Click on the **Create key** button. -5. Use the key with HubSpot node credentials in n8n. - - ## Using APP Token -1. Follow the instructions in the [Private Apps Documentation](https://developers.hubspot.com/docs/api/private-apps) to get your access token. +1. Follow the instructions in the [Private Apps Documentation](https://developers.hubspot.com/docs/api/private-apps){:target=_blank .external-link} to get your access token. 2. Set the access token as the key in your HubSpot credentials in n8n. - - -## Using Developer API Key (for HubSpot Trigger node) - -1. Access your [HubSpot Developer Home](https://developers.hubspot.com/). -2. Click on **Apps** in the top bar. -3. Click on the **Get HubSpot API key** button. -4. Click on the **Show key** button. -5. Use the displayed Developer API key with your HubSpot Trigger node credentials in n8n. diff --git a/docs/release-notes.md b/docs/release-notes.md index 3dad04f50..54ce565e9 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -13,6 +13,158 @@ hide: New features and bug fixes for n8n. +
+ +## n8n@0.217.2 + +View the [commits](https://github.com/n8n-io/n8n/compare/n8n@0.217.1...n8n@0.217.2){:target=_blank .external-link} for this version.
+**Release date:** 2023-02-27 + +This is a bug fix release. + +### Bug fixes + +* Core: fix issue with execution pruning queries. +* Core: fix for workflow filtering by tag. +* Core: revert isPending check on the user entity. + +
+ +
+ +## n8n@0.217.1 + +View the [commits](https://github.com/n8n-io/n8n/compare/n8n@0.217.0...n8n@0.217.1){:target=_blank .external-link} for this version.
+**Release date:** 2023-02-24 + +This is a bug fix release. + +### Bug fixes + +Prevent executions appearing to run forever. + +
+ +
+ +## n8n@0.217.0 + +View the [commits](https://github.com/n8n-io/n8n/compare/n8n@0.216.1...n8n@0.217.0){:target=_blank .external-link} for this version.
+**Release date:** 2023-02-23 + +This release contains new features and bug fixes. It includes improvements to the nodes panel and executions list. It also deprecates the Read Binary File node. + + +### New features + +* Add new event hooks to support telemetry around the new onboarding experience. +* Update nodes to set required path type. +* Core: add configurable execution history limit. Use this to improve performance when self-hosting. Refer to [Execution Data | Enable data pruning ](/hosting/scaling/execution-data#enable-data-pruning) for more information. +* Core: add execution runData recovery and status field. This allows us to show execution statuses on the **Executions** list. +* Core: add SAML feature flag. This is preparatory for an upcoming feature. +* Editor: improvements to the nodes panel search. When searching in root view, n8n now displays results from both trigger and regular nodes. When searching in a category view, n8n shows results from the category, and also suggests results from other categories. +* Hide sensitive value in authentication header credentials and authentication query credentials. +* Support feature flag evaluation server side. +* Deprecate the Read Binary File node. Use the [Read Binary Files](/integrations/builtin/core-nodes/n8n-nodes-base.readbinaryfiles/) node instead. + + +### Bug fixes + +* Baserow Node: fix issue with **Get All** not correctly using filters. +* Compare Datasets Node: UI tweaks and fixes. +* Core: don't allow arbitrary path traversal in BinaryDataManager. +* Core: don't allow arbitrary path traversal in the credential-translation endpoint. +* Core: don't explicitly bypass authentication on URLs containing `.svg`. +* Core: don't remove empty output connections arrays in PurgeInvalidWorkflowConnections migration. +* Core: fix execution status filters. +* Core: user update endpoint should only allow updating email, firstName, and lastName. +* Discord Node: fix wrong error message being displayed. +* Discourse Node: fix issue with credential test not working. +* Editor: apply correct IRunExecutionData to finished workflow. +* Editor: fix an issue with zoom and canvas nodes connections. +* Editor: fix unexpected date rendering on front-end. +* Editor: remove `crashed` status from filter. +* Fix typo in error messages when a property doesn't exist. +* Fixes an issue when saving an active workflow without triggers would cause n8n to be stuck. +* Google Calendar Node: fix incorrect labels for start and end times when getting all events. +* Postgres Node: fix for tables containing field named JSON. +* AWS S3 Node: fix issue with get many buckets not outputting data. + + +
+ +
+ +## n8n@0.216.2 + +View the [commits](https://github.com/n8n-io/n8n/compare/n8n@0.216.1...n8n@0.216.2){:target=_blank .external-link} for this version.
+**Release date:** 2023-02-23 + +This is a bug fix release. + +### Bug fixes + +Core: don't remove empty output connections arrays in PurgeInvalidWorkflowConnections migration. + +
+ +
+ +## n8n@0.215.3 + +View the [commits](https://github.com/n8n-io/n8n/compare/n8n@0.215.2...n8n@0.215.3){:target=_blank .external-link} for this version.
+**Release date:** 2023-02-23 + +This is a bug fix release. It contains an important security fix. + +### Bug fixes + +* Core: don't allow arbitrary path traversal in BinaryDataManager. +* Core: don't allow arbitrary path traversal in the credential-translation endpoint. +* Core: don't explicitly bypass authentication on URLs containing `.svg`. +* Core: don't remove empty output connections arrays in PurgeInvalidWorkflowConnections migration. +* Core: the user update endpoint should only allow updating email, first name, and last name. + +
+ +
+ +## n8n@0.214.4 + +View the [commits](https://github.com/n8n-io/n8n/compare/n8n@0.214.3...n8n@0.214.4){:target=_blank .external-link} for this version.
+**Release date:** 2023-02-23 + +This is a bug fix release. It contains an important security fix. + +### Bug fixes + +* Core: don't allow arbitrary path traversal in BinaryDataManager. +* Core: don't allow arbitrary path traversal in the credential-translation endpoint. +* Core: don't explicitly bypass authentication on URLs containing `.svg`. +* Core: don't remove empty output connections arrays in PurgeInvalidWorkflowConnections migration. +* Core: the user update endpoint should only allow updating email, first name, and last name. + +
+ + +
+ +## n8n@0.216.1 + +View the [commits](https://github.com/n8n-io/n8n/compare/n8n@0.216.0...n8n@0.216.1){:target=_blank .external-link} for this version.
+**Release date:** 2023-02-21 + +This is a bug fix release. + +### Bug fixes + +* Core: don't allow arbitrary path traversal in BinaryDataManager. +* Core: don't allow arbitrary path traversal in the credential-translation endpoint. +* Core: don't explicitly bypass auth on URLs containing `.svg`. +* Core: user update endpoint should only allow updating email, firstName, and lastName. + +
+
## n8n@0.216.0 diff --git a/docs/try-it-out/longer-introduction.md b/docs/try-it-out/longer-introduction.md index df08208ee..a3f1006cb 100644 --- a/docs/try-it-out/longer-introduction.md +++ b/docs/try-it-out/longer-introduction.md @@ -21,13 +21,10 @@ This guide shows you how to automate a task using a workflow in n8n, explaining --8<-- "_snippets/try-it-out/install-run-n8n.md" +## Step two: New workflow -## Step two: Create a new workflow +If you have no workflows, n8n takes you directly to the canvas, so you can start building. If you already built a workflow, n8n takes you to the **Workflows** list. Select **Add workflow** to create a new workflow for this tutorial. -Create a blank workflow: - -1. On the **Workflows** list, select **Add Workflow**. -2. Rename the workflow to something meaningful, such as **Quickstart**: select the current workflow name, and replace it. ## Step three: Add a trigger node diff --git a/docs/workflows/create.md b/docs/workflows/create.md index 1f2cf656b..d19bc20d0 100644 --- a/docs/workflows/create.md +++ b/docs/workflows/create.md @@ -8,9 +8,8 @@ A workflow is a collection of nodes connected together to automate a process. Yo ## Create a workflow -1. Open n8n. You'll see the **Workflows** list. -2. Select **Add Workflow**. -3. Get started by adding a trigger node: select **Add first step...** +1. On the **Workflows** list, select **Add Workflow**. +2. Get started by adding a trigger node: select **Add first step...** If it's your first time building a workflow, you may want to use the [quickstart guides](/try-it-out/) to quickly try out n8n features. diff --git a/document-templates/credentials.md b/document-templates/credentials.md index 1da62fb13..ff0476176 100644 --- a/document-templates/credentials.md +++ b/document-templates/credentials.md @@ -34,7 +34,7 @@ _Link to product's docs for this auth method._ _STOP AND THINK: does this node require a step by step? If authentication is easy to set up, or if this node isn't heavily used, consider leaving out the step by step to minimise maintenance._ -_IF NEEDED: Include a step by step guide to how to set up a particular type of authentication. If multiple auth methods are available, create a section for each. For example, the Asana credentials have two sections: one for OAuth and one for access token (https://docs.n8n.io/integrations/builtin/credentials/asana/)_ +_IF NEEDED: Include a step by step guide to how to set up a particular type of authentication. If multiple auth methods are available, create a section for each. For example, the Asana credentials have two sections: one for OAuth and one for access token (/integrations/builtin/credentials/asana/)_