merge main and fix conflicts

This commit is contained in:
Deborah Barnard 2023-02-27 16:17:35 +00:00
commit 8e2f7c134f
116 changed files with 1014 additions and 372 deletions

View File

@ -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
}
]

View File

@ -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.
<!-- todo: docs / sheets /slides will also need drive when nodes updated -->
!!! 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**.

View File

@ -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.

View File

@ -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/

View File

@ -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

View File

@ -22,5 +22,24 @@ If you see this error message:
> ERROR: Can't get data for expression under '`<field-name>`' 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.

View File

@ -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.

View File

@ -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

View File

@ -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`.
<code-group>
<code-block title="npm">
```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
```
</code-block>
<code-block title="Docker">
```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
```
</code-block>
<code-block title="docker-compose.yaml">
```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
```
</code-block>
</code-group>
!!! 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.
<code-group>
<code-block title="npm">
```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
```
</code-block>
<code-block title="Docker">
# 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
```
</code-block>
<code-block title="docker-compose.yaml">
```yaml
# Docker Compose
n8n:
environment:
- EXECUTIONS_DATA_PRUNE=true
- EXECUTIONS_DATA_MAX_AGE=168
- EXECUTIONS_DATA_PRUNE_MAX_COUNT=50000
```
</code-block>
</code-group>
!!! 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.

View File

@ -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.

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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]()

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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.

View File

@ -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

View File

@ -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.

View File

@ -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

View File

@ -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 companys 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.

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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.

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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.

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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
* Get a campaign

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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.

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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:

View File

@ -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

Some files were not shown because too many files have changed in this diff Show More