Merge branch 'main' into node-intros

This commit is contained in:
Deborah 2023-02-23 11:05:29 +00:00 committed by GitHub
commit d530008f6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
106 changed files with 630 additions and 970 deletions

View File

@ -17,20 +17,20 @@ df_string:
- funcName: extractUrl
returns: String
description: Extracts a URL from a string. Returns undefined if none is found.
# - funcName: hash
# args:
# - argName: algo
# optional: true
# longName: Algorithm
# type: String enum
# description: Which hashing algorithm to use.
# default: md5
# options:
# - md5
# - base64
# - sha1
# returns: String
# description: Returns a string hashed with the given algorithm.
- funcName: hash
args:
- argName: algo
optional: true
longName: Algorithm
type: String enum
description: Which hashing algorithm to use.
default: md5
options:
- md5
- base64
- sha1
returns: String
description: Returns a string hashed with the given algorithm.
- funcName: isDomain
returns: Boolean
description: Checks if a string is a domain.
@ -49,17 +49,17 @@ df_string:
- funcName: isUrl
returns: Boolean
description: Checks if a string is a valid URL.
# - funcName: quote
# args:
# - argName: mark
# optional: true
# longName: String
# type: String
# description: Which quote mark style to use.
# default: >
# "
# returns: String
# description: Returns a string wrapped in the quotation marks. Default quotation is <code>"</code>.
- funcName: quote
args:
- argName: mark
optional: true
longName: String
type: String
description: Which quote mark style to use.
default: >
"
returns: String
description: Returns a string wrapped in the quotation marks. Default quotation is <code>"</code>.
- funcName: removeMarkdown
returns: String
description: Removes Markdown formatting from a string.
@ -93,75 +93,75 @@ df_string:
- funcName: toWholeNumber
returns: Number
description: Converts a string to a whole number.
# - funcName: urlDecode
# args:
# - argName: entireString
# optional: true
# longName: Boolean
# type: Boolean
# description: Whether to decode characters that are part of the URI syntax (true) or not (false).
# default: false
# returns: String
# description: Decodes a URL-encoded string. It decodes any percent-encoded characters in the input string, and replaces them with their original characters.
# - funcName: urlEncode
# args:
# - argName: entireString
# optional: true
# longName: Boolean
# type: Boolean
# description: Whether to encode characters that are part of the URI syntax (true) or not (false).
# default: false
# returns: String
# description: Encodes a string to be used/included in a URL.
- funcName: urlDecode
args:
- argName: entireString
optional: true
longName: Boolean
type: Boolean
description: Whether to decode characters that are part of the URI syntax (true) or not (false).
default: false
returns: String
description: Decodes a URL-encoded string. It decodes any percent-encoded characters in the input string, and replaces them with their original characters.
- funcName: urlEncode
args:
- argName: entireString
optional: true
longName: Boolean
type: Boolean
description: Whether to encode characters that are part of the URI syntax (true) or not (false).
default: false
returns: String
description: Encodes a string to be used/included in a URL.
df_object:
- funcName: isEmpty
returns: Boolean
description: Checks if the Object has no key-value pairs.
# - funcName: merge
# args:
# - argName: object
# optional: false
# longName: Object
# type: Object
# description: The Object to merge with the base Object.
# returns: Object
# description: Merges two Objects into a single Object using the first as the base Object. If a key exists in both Objects, the key in the base Object takes precedence.
# - funcName: hasField
# args:
# - argName: fieldName
# optional: false
# longName: String
# type: String
# description: The field to search for.
# returns: Boolean
# description: Checks if the Object has a given field. Only top-level keys are supported.
# - funcName: removeField
# args:
# - argName: key
# optional: false
# longName: String
# type: String
# description: The field key of the field to remove.
# returns: Object
# description: Removes a given field from the Object
# - funcName: removeFieldsContaining
# args:
# - argName: value
# optional: false
# longName: String
# type: String
# description: The field value of the field to remove.
# returns: Object
# description: Removes fields with a given value from the Object.
# - funcName: keepFieldsContaining
# args:
# - argName: value
# optional: false
# longName: String
# type: String
# description: The field value of the field to keep.
# returns: Object
# description: Removes fields that do not match the given value from the Object.
- funcName: merge
args:
- argName: object
optional: false
longName: Object
type: Object
description: The Object to merge with the base Object.
returns: Object
description: Merges two Objects into a single Object using the first as the base Object. If a key exists in both Objects, the key in the base Object takes precedence.
- funcName: hasField
args:
- argName: fieldName
optional: false
longName: String
type: String
description: The field to search for.
returns: Boolean
description: Checks if the Object has a given field. Only top-level keys are supported.
- funcName: removeField
args:
- argName: key
optional: false
longName: String
type: String
description: The field key of the field to remove.
returns: Object
description: Removes a given field from the Object
- funcName: removeFieldsContaining
args:
- argName: value
optional: false
longName: String
type: String
description: The field value of the field to remove.
returns: Object
description: Removes fields with a given value from the Object.
- funcName: keepFieldsContaining
args:
- argName: value
optional: false
longName: String
type: String
description: The field value of the field to keep.
returns: Object
description: Removes fields that do not match the given value from the Object.
- funcName: compact
returns: Object
description: Removes empty values from an Object.
@ -175,175 +175,175 @@ df_number:
- funcName: floor
returns: Number
description: Rounds down a number to a whole number.
# - funcName: format
# args:
# - argName: locales
# optional: true
# longName: LanguageCode
# type: String
# description: An IETF BCP 47 language tag.
# default: en-US
# - argName: options
# optional: true
# longName: FormatOptions
# type: Object
# description: Configure options for number formatting. Refer to <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat" target=_blank>MDN | Intl.NumberFormat()</a> for more information.
# returns: String
# description: This is a wrapper around <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat" target=_blank>Intl.NumberFormat()</a>. Returns a formatted string of a number based on the given LanguageCode and FormatOptions. When no arguments are given, transforms the number in a like format 1.234.
- funcName: format
args:
- argName: locales
optional: true
longName: LanguageCode
type: String
description: An IETF BCP 47 language tag.
default: en-US
- argName: options
optional: true
longName: FormatOptions
type: Object
description: Configure options for number formatting. Refer to <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat" target=_blank>MDN | Intl.NumberFormat()</a> for more information.
returns: String
description: This is a wrapper around <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat" target=_blank>Intl.NumberFormat()</a>. Returns a formatted string of a number based on the given LanguageCode and FormatOptions. When no arguments are given, transforms the number in a like format 1.234.
- funcName: isEven
returns: Boolean
description: Returns true if the number is even. Only works on whole numbers.
- funcName: isOdd
returns: Boolean
description: Returns true if the number is odd. Only works on whole numbers.
# - funcName: round
# args:
# - argName: decimalPlaces
# optional: true
# longName: Number
# type: Number
# default: "0"
# description: How many decimal places to round to.
# returns: Number
# description: Returns the value of a number rounded to the nearest whole number.
- funcName: round
args:
- argName: decimalPlaces
optional: true
longName: Number
type: Number
default: "0"
description: How many decimal places to round to.
returns: Number
description: Returns the value of a number rounded to the nearest whole number.
df_date:
# - funcName: beginningOf
# args:
# - argName: unit
# optional: true
# longName: DurationUnit
# type: String enum
# description: A valid string specifying the time unit.
# default: week
# options: *df_durationUnit
# returns: Date
# description: Transform a Date to the start of the given time period.
- funcName: beginningOf
args:
- argName: unit
optional: true
longName: DurationUnit
type: String enum
description: A valid string specifying the time unit.
default: week
options: *df_durationUnit
returns: Date
description: Transform a Date to the start of the given time period.
- funcName: endOfMonth
returns: Date
description: Transforms a Date to the end of the month.
# - funcName: extract
# args:
# - argName: datePart
# optional: true
# longName: DurationUnit
# type: String enum
# description: A valid string specifying the time unit.
# default: week
# options: *df_durationUnit
# returns: Number
# description: Extracts the part defined in datePart from a Date.
# - funcName: format
# args:
# - argName: fmt
# optional: false
# longName: TimeFormat
# type: String enum
# description: A valid string specifying the time format. Refer to <a href="https://moment.github.io/luxon/#/formatting?id=table-of-tokens" target=_blank>Luxon | Table of tokens</a> for formats.
# returns: String
# description: Formats a Date in the given structure
# - funcName: isBetween
# args:
# - argName: date1
# optional: false
# longName: Date | DateTime
# type: Date or DateTime
# description: The first date in the range.
# - argName: date2
# optional: false
# longName: Date | DateTime
# type: Date or DateTime
# description: The last date in the range.
# returns: Boolean
# description: Checks if a Date is between two given dates.
- funcName: extract
args:
- argName: datePart
optional: true
longName: DurationUnit
type: String enum
description: A valid string specifying the time unit.
default: week
options: *df_durationUnit
returns: Number
description: Extracts the part defined in datePart from a Date.
- funcName: format
args:
- argName: fmt
optional: false
longName: TimeFormat
type: String enum
description: A valid string specifying the time format. Refer to <a href="https://moment.github.io/luxon/#/formatting?id=table-of-tokens" target=_blank>Luxon | Table of tokens</a> for formats.
returns: String
description: Formats a Date in the given structure
- funcName: isBetween
args:
- argName: date1
optional: false
longName: Date | DateTime
type: Date or DateTime
description: The first date in the range.
- argName: date2
optional: false
longName: Date | DateTime
type: Date or DateTime
description: The last date in the range.
returns: Boolean
description: Checks if a Date is between two given dates.
- funcName: isDst
returns: Boolean
description: Checks if a Date is within Daylight Savings Time.
# - funcName: isInLast
# args:
# - argName: n
# optional: true
# longName: Number
# type: Number
# description: The number of units. For example, to check if the date is in the last nine weeks, enter 9.
# default: "0"
# - argName: unit
# optional: true
# longName: DurationUnit
# type: String enum
# description: A valid string specifying the time unit.
# default: minutes
# options: *df_durationUnit
# returns: Boolean
# description: Checks if a Date is within a given time period.
- funcName: isInLast
args:
- argName: n
optional: true
longName: Number
type: Number
description: The number of units. For example, to check if the date is in the last nine weeks, enter 9.
default: "0"
- argName: unit
optional: true
longName: DurationUnit
type: String enum
description: A valid string specifying the time unit.
default: minutes
options: *df_durationUnit
returns: Boolean
description: Checks if a Date is within a given time period.
- funcName: isWeekend
returns: Boolean
description: Checks if the Date falls on a Saturday or Sunday.
# - funcName: minus
# args:
# - argName: n
# optional: false
# longName: Number
# type: Number
# description: The number of units. For example, to subtract nine seconds, enter 9 here.
# - argName: unit
# optional: true
# longName: DurationUnit
# type: String enum
# description: A valid string specifying the time unit.
# default: minute
# options: *df_durationUnit
# returns: Date
# description: Subtracts a given time period from a Date.
# - funcName: plus
# args:
# - argName: n
# optional: false
# longName: Number
# type: Number
# description: The number of units. For example, to add nine seconds, enter 9 here.
# - argName: unit
# optional: true
# longName: DurationUnit
# type: String enum
# description: A valid string specifying the time unit.
# default: minute
# options: *df_durationUnit
# returns: Date
# description: Adds a given time period from a Date.
- funcName: minus
args:
- argName: n
optional: false
longName: Number
type: Number
description: The number of units. For example, to subtract nine seconds, enter 9 here.
- argName: unit
optional: true
longName: DurationUnit
type: String enum
description: A valid string specifying the time unit.
default: minute
options: *df_durationUnit
returns: Date
description: Subtracts a given time period from a Date.
- funcName: plus
args:
- argName: n
optional: false
longName: Number
type: Number
description: The number of units. For example, to add nine seconds, enter 9 here.
- argName: unit
optional: true
longName: DurationUnit
type: String enum
description: A valid string specifying the time unit.
default: minute
options: *df_durationUnit
returns: Date
description: Adds a given time period from a Date.
df_array:
- funcName: average
returns: Number
description: Returns the value of elements in an array
# - funcName: chunk
# args:
# - argName: size
# optional: false
# longName: Number
# type: Number
# description: The size of each chunk.
# returns: Array
# description: Splits arrays into chunks with a length of size
- funcName: chunk
args:
- argName: size
optional: false
longName: Number
type: Number
description: The size of each chunk.
returns: Array
description: Splits arrays into chunks with a length of size
- funcName: compact
returns: Array
description: Removes empty values from the array.
# - funcName: difference
# args:
# - argName: arr
# optional: false
# longName: Array
# type: Array
# description: The array to compare to the base array.
# returns: Array
# description: Compares two arrays. Returns all elements in the base array that aren't present in arr.
# - funcName: intersection
# args:
# - argName: arr
# optional: false
# longName: Array
# type: Array
# description: The array to compare to the base array.
# returns: Array
# description: Compares two arrays. Returns all elements in the base array that are present in arr.
- funcName: difference
args:
- argName: arr
optional: false
longName: Array
type: Array
description: The array to compare to the base array.
returns: Array
description: Compares two arrays. Returns all elements in the base array that aren't present in arr.
- funcName: intersection
args:
- argName: arr
optional: false
longName: Array
type: Array
description: The array to compare to the base array.
returns: Array
description: Compares two arrays. Returns all elements in the base array that are present in arr.
- funcName: first
returns: Array item
description: Returns the first element of the array.
@ -359,88 +359,88 @@ df_array:
- funcName: max
returns: Number
description: Returns the highest value in an array.
# - funcName: merge
# args:
# - argName: arr
# optional: false
# longName: Array
# type: Array
# description: The array to merge into the base array.
# returns: Array
# description: Merges two Object-arrays into one array by merging the key-value pairs of each element.
- funcName: merge
args:
- argName: arr
optional: false
longName: Array
type: Array
description: The array to merge into the base array.
returns: Array
description: Merges two Object-arrays into one array by merging the key-value pairs of each element.
- funcName: min
returns: Number
description: Gets the minimum value from a number-only array.
# - funcName: pluck
# args:
# - argName: fieldName
# optional: false,
# longName: String
# type: String
# description: The key(s) you want to retrieve. You can enter as many keys as you want, as comma-separated strings.
# returns: Array
# description: Returns an array of Objects where keys equal the given field names.
- funcName: pluck
args:
- argName: fieldName
optional: false,
longName: String
type: String
description: The key(s) you want to retrieve. You can enter as many keys as you want, as comma-separated strings.
returns: Array
description: Returns an array of Objects where keys equal the given field names.
- funcName: randomItem
returns: Array item
description: Returns a random element from an array.
# - funcName: removeDuplicates
# args:
# - argName: key
# optional: true
# longName: String
# type: String
# description: A key, or comma-separated list of keys, to check for duplicates.
# returns: Array
# description: Removes duplicates from an array.
# - funcName: renameKeys
# args:
# - argName: from
# optional: false
# longName: String
# type: String
# description: The key you want to rename.
# - argName: to
# optional: false
# longName: String
# type: String
# description: The new name.
# returns: Array
# description: Renames all matching keys in the array. You can rename more than one key by entering a series of comma separated strings, in the pattern oldKeyName, newKeyName.
# - funcName: smartJoin
# args:
# - argName: keyField
# optional: false
# longName: String
# type: String
# description: The key to join.
# - argName: nameField
# optional: false
# longName: String
# type: String
# description: The value to join.
# returns: Array
# description: Operates on an array of objects where each object contains key-value pairs. Creates a new object containing key-value pairs, where the key is the value of the first pair, and the value is the value of the second pair. Removes non-matching and empty values and trims any whitespace before joining.
# examples:
# - exampleName: Basic usage
# code: smartjoin
- funcName: removeDuplicates
args:
- argName: key
optional: true
longName: String
type: String
description: A key, or comma-separated list of keys, to check for duplicates.
returns: Array
description: Removes duplicates from an array.
- funcName: renameKeys
args:
- argName: from
optional: false
longName: String
type: String
description: The key you want to rename.
- argName: to
optional: false
longName: String
type: String
description: The new name.
returns: Array
description: Renames all matching keys in the array. You can rename more than one key by entering a series of comma separated strings, in the pattern oldKeyName, newKeyName.
- funcName: smartJoin
args:
- argName: keyField
optional: false
longName: String
type: String
description: The key to join.
- argName: nameField
optional: false
longName: String
type: String
description: The value to join.
returns: Array
description: Operates on an array of objects where each object contains key-value pairs. Creates a new object containing key-value pairs, where the key is the value of the first pair, and the value is the value of the second pair. Removes non-matching and empty values and trims any whitespace before joining.
examples:
- exampleName: Basic usage
code: smartjoin
- funcName: sum
returns: Number
description: Returns the total sum all the values in an array of parsable numbers.
# - funcName: union
# args:
# - argName: arr
# optional: false
# longName: Array
# type: Array
# description: The array to compare to the base array.
# returns: Array
# description: Concatenates two arrays and then removes duplicate.
# - funcName: unique
# args:
# - argName: key
# optional: true
# longName: String
# type: String
# description: A key, or comma-separated list of keys, to check for duplicates.
# returns: Array
# description: Remove duplicates from an array.
- funcName: union
args:
- argName: arr
optional: false
longName: Array
type: Array
description: The array to compare to the base array.
returns: Array
description: Concatenates two arrays and then removes duplicate.
- funcName: unique
args:
- argName: key
optional: true
longName: String
type: String
description: A key, or comma-separated list of keys, to check for duplicates.
returns: Array
description: Remove duplicates from an array.

View File

@ -4,7 +4,9 @@ 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.
@ -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
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,16 +1,9 @@
# Action Network
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.
[Action Network](https://actionnetwork.org/) is an open platform that empowers individuals and groups to organize for progressive causes.
!!! note "Credentials"
Refer to [Action Network credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/actionnetwork/).
## Basic operations

View File

@ -1,14 +1,9 @@
# ActiveCampaign
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.
[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.
!!! note "Credentials"
Refer to [ActiveCampaign credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/activecampaign/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Adalo
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.
[Adalo](https://www.adalo.com/){:target=_blank .external-link} is a low code app builder.
!!! note "Credentials"
Refer to [Adalo credentials](https://docs.n8n.io/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}.
You can find authentication information for this node [here](/integrations/builtin/credentials/adalo/).
## Operations

View File

@ -1,14 +1,9 @@
# Affinity
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.
[Affinity](https://www.affinity.co/) is a powerful relationship intelligence platform enabling teams to leverage their network to close the next big deal.
!!! note "Credentials"
Refer to [Affinity credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/affinity/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Agile CRM
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.
[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.
!!! note "Credentials"
Refer to [Agile CRM credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/agilecrm/).
## Basic Operations

View File

@ -1,15 +1,9 @@
# Airtable
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.
[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.
!!! note "Credentials"
Refer to [Airtable credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/airtable/).
## Basic Operations

View File

@ -1,14 +1,10 @@
# AMQP Sender
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.
[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.
!!! note "Credentials"
Refer to [AMQP Sender credentials](https://docs.n8n.io/integrations/builtin/credentials/amqp/) for guidance on setting up authentication.
You can find authentication information for this node [here](/integrations/builtin/credentials/amqp/).
!!! 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,15 +1,9 @@
# APITemplate.io
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.
[APITemplate.io](https://apitemplate.io) allows you to auto-generate images and PDF documents.
!!! note "Credentials"
Refer to [APITemplate.io credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/apitemplateio/).
## Basic Operations

View File

@ -1,14 +1,10 @@
# Asana
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.
[Asana](https://asana.com/) is a web and mobile application designed to help teams organize, track, and manage their work.
!!! note "Credentials"
Refer to [Asana credentials](https://docs.n8n.io/integrations/builtin/credentials/asana/) for guidance on setting up authentication.
You can find authentication information for this node [here](/integrations/builtin/credentials/asana/).
!!! 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,8 +1,6 @@
# Automizy
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.
[Automizy](https://automizy.com/) is an email marketing automation software that offers AI-powered Subject Line Tester, AB testing, and email automation.
!!! note "Credentials"
Refer to [Automizy credentials](https://docs.n8n.io/integrations/builtin/credentials/automizy/) for guidance on setting up authentication.

View File

@ -1,8 +1,6 @@
# Autopilot
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.
[Autopilot](https://www.autopilothq.com/) is a visual marketing software that allows you to automate and personalize your marketing across the entire customer journey.
!!! note "Credentials"
Refer to [Autopilot credentials](https://docs.n8n.io/integrations/builtin/credentials/autopilot/) for guidance on setting up authentication.
@ -11,8 +9,6 @@ On this page, you'll find a list of operations the Autopilot node supports and l
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
* Contact

View File

@ -1,14 +1,9 @@
# AWS Certificate Manager
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.
[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.
!!! note "Credentials"
Refer to [AWS Certificate Manager credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/aws/).
## Operations

View File

@ -1,14 +1,9 @@
# AWS Comprehend
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.
[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.
!!! note "Credentials"
Refer to [AWS Comprehend credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/aws/).
## Basic Operations

View File

@ -1,8 +1,6 @@
# AWS DynamoDB
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.
[AWS DynamoDB](https://aws.amazon.com/DynamoDB/) is a key-value and document database provided by Amazon as a part of Amazon Web Services.
!!! note "Credentials"
Refer to [AWS DynamoDB credentials](https://docs.n8n.io/integrations/builtin/credentials/aws/) for guidance on setting up authentication.

View File

@ -1,5 +1,6 @@
# AWS Elastic Load Balancing
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.
@ -11,9 +12,6 @@ On this page, you'll find a list of operations the AWS ELB node supports and lin
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.
!!! note "Credentials"
You can find authentication information for this node [here](/integrations/builtin/credentials/aws/).
## Operations
* Listener Certificate

View File

@ -1,8 +1,6 @@
# AWS Lambda
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.
[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.
!!! note "Credentials"
Refer to [AWS Lambda credentials](https://docs.n8n.io/integrations/builtin/credentials/aws/) for guidance on setting up authentication.
@ -11,6 +9,7 @@ On this page, you'll find a list of operations the AWS Lambda node supports and
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
* Invoke a function

View File

@ -1,8 +1,6 @@
# AWS Rekognition
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.
[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.
!!! note "Credentials"
Refer to [AWS Rekognition credentials](https://docs.n8n.io/integrations/builtin/credentials/aws/) for guidance on setting up authentication.

View File

@ -1,8 +1,6 @@
# AWS S3
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.
[AWS S3](https://aws.amazon.com/s3/) is a service offered by Amazon Web Services that provides object storage through a web service interface.
!!! note "Credentials"
Refer to [AWS S3 credentials](https://docs.n8n.io/integrations/builtin/credentials/aws/) for guidance on setting up authentication.

View File

@ -1,8 +1,6 @@
# AWS SES
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.
[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.
!!! note "Credentials"
Refer to [AWS SES credentials](https://docs.n8n.io/integrations/builtin/credentials/aws/) for guidance on setting up authentication.
@ -11,6 +9,7 @@ On this page, you'll find a list of operations the AWS SES node supports and lin
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
* Custom Verification Email

View File

@ -1,14 +1,9 @@
# AWS SNS
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.
[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.
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](https://docs.n8n.io/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.
!!! note "Credentials"
You can find authentication information for this node [here](/integrations/builtin/credentials/aws/).
## Basic Operations

View File

@ -1,8 +1,6 @@
# AWS SQS
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.
[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.
!!! note "Credentials"
Refer to [AWS SQS credentials](https://docs.n8n.io/integrations/builtin/credentials/aws/) for guidance on setting up authentication.

View File

@ -1,8 +1,6 @@
# AWS Textract
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.
[AWS Textract](https://aws.amazon.com/textract/) is a service that extracts printed text, handwriting, and data from any document.
!!! note "Credentials"
Refer to [AWS Textract credentials](https://docs.n8n.io/integrations/builtin/credentials/aws/) for guidance on setting up authentication.
@ -10,6 +8,7 @@ On this page, you'll find a list of operations the AWS Textract node supports an
!!! 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
- Analyze Receipt or Invoice

View File

@ -1,8 +1,6 @@
# AWS Transcribe
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.
[AWS Transcribe](https://aws.amazon.com/transcribe/) is a service that recognizes speech in your audio or video and transcribes that speech into text.
!!! note "Credentials"
Refer to [AWS Transcribe credentials](https://docs.n8n.io/integrations/builtin/credentials/aws/) for guidance on setting up authentication.
@ -11,9 +9,6 @@ On this page, you'll find a list of operations the AWS Transcribe node supports
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
**Transcription Job**
@ -24,9 +19,9 @@ On this page, you'll find a list of operations the AWS Transcribe node supports
## 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/buil 5tin/core-nodes/n8n-nodes-base.start/)
- [Start](/integrations/builtin/core-nodes/n8n-nodes-base.start/)
- [AWS S3](/integrations/builtin/app-nodes/n8n-nodes-base.awsS3/)
- [AWS Transcribe]()

View File

@ -1,8 +1,6 @@
# BambooHR
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.
[BambooHR](https://www.bamboohr.com/) provides human resources software as a service.
!!! note "Credentials"
Refer to [BambooHR credentials](https://docs.n8n.io/integrations/builtin/credentials/bamboohr/) for guidance on setting up authentication.
@ -11,6 +9,7 @@ On this page, you'll find a list of operations the BambooHR node supports and li
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
* Company Report

View File

@ -1,5 +1,6 @@
# Bannerbear
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.
@ -11,6 +12,7 @@ On this page, you'll find a list of operations the Bannerbear node supports and
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
* Image

View File

@ -1,8 +1,6 @@
# Baserow
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.
[Baserow](https://baserow.io/) is an open source no-code database and Airtable alternative.
!!! note "Credentials"
Refer to [Baserow credentials](https://docs.n8n.io/integrations/builtin/credentials/baserow/) for guidance on setting up authentication.
@ -11,6 +9,7 @@ On this page, you'll find a list of operations the Baserow node supports and lin
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
* Row

View File

@ -1,8 +1,6 @@
# Beeminder
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.
[Beeminder](https://www.beeminder.com/) is a service that helps you to self-track and stick to your goals.
!!! note "Credentials"
Refer to [Beeminder credentials](https://docs.n8n.io/integrations/builtin/credentials/beeminder/) for guidance on setting up authentication.
@ -12,6 +10,7 @@ On this page, you'll find a list of operations the Beeminder node supports and l
## Basic Operations
**Datapoint**

View File

@ -1,8 +1,6 @@
# Bitly
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.
[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.
!!! note "Credentials"
Refer to [Bitly credentials](https://docs.n8n.io/integrations/builtin/credentials/bitly/) for guidance on setting up authentication.
@ -11,6 +9,7 @@ On this page, you'll find a list of operations the Bitly node supports and links
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
* Link

View File

@ -1,8 +1,6 @@
# Bitwarden
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.
[Bitwarden](https://www.bitwarden.com/) is an open-source password management solution for individuals, teams, and business organizations.
!!! note "Credentials"
Refer to [Bitwarden credentials](https://docs.n8n.io/integrations/builtin/credentials/bitwarden/) for guidance on setting up authentication.
@ -12,6 +10,7 @@ On this page, you'll find a list of operations the Bitwarden node supports and l
## Basic Operations
* Collection

View File

@ -1,8 +1,6 @@
# Box
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.
[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.
!!! note "Credentials"
Refer to [Box credentials](https://docs.n8n.io/integrations/builtin/credentials/box/) for guidance on setting up authentication.

View File

@ -1,8 +1,6 @@
# Brandfetch
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.
[Brandfetch](https://www.Brandfetch.com/) is a brand search engine that helps you find logos, colors, fonts, images, and more.
!!! note "Credentials"
Refer to [Brandfetch credentials](https://docs.n8n.io/integrations/builtin/credentials/brandfetch/) for guidance on setting up authentication.
@ -12,6 +10,7 @@ On this page, you'll find a list of operations the Brandfetch node supports and
## Basic Operations
* Return a company's colors

View File

@ -1,8 +1,6 @@
# Bubble
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.
[Bubble](https://www.bubble.io/) lets you create interactive, multi-user apps for desktop and mobile web browsers.
!!! note "Credentials"
Refer to [Bubble credentials](https://docs.n8n.io/integrations/builtin/credentials/bubble/) for guidance on setting up authentication.
@ -12,6 +10,7 @@ On this page, you'll find a list of operations the Bubble node supports and link
## Basic Operations
* Object

View File

@ -1,8 +1,6 @@
# Chargebee
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.
[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.
!!! note "Credentials"
Refer to [Chargebee credentials](https://docs.n8n.io/integrations/builtin/credentials/chargebee/) for guidance on setting up authentication.
@ -11,6 +9,7 @@ On this page, you'll find a list of operations the Chargebee node supports and l
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
* Customer

View File

@ -1,8 +1,6 @@
# CircleCI
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.
[CircleCI](https://circleci.com/) is a continuous integration and delivery platform helps teams release quality code, faster.
!!! note "Credentials"
Refer to [CircleCI credentials](https://docs.n8n.io/integrations/builtin/credentials/circleci/) for guidance on setting up authentication.
@ -11,6 +9,7 @@ On this page, you'll find a list of operations the CircleCI node supports and li
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
* Pipeline

View File

@ -1,8 +1,6 @@
# Webex by Cisco
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.
[Webex by Cisco](https://webex.com/) is a web conferencing and videoconferencing application.
!!! note "Credentials"
Refer to [Webex credentials](https://docs.n8n.io/integrations/builtin/credentials/ciscowebex/) for guidance on setting up authentication.
@ -10,6 +8,7 @@ On this page, you'll find a list of operations the Webex node supports and links
!!! 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
* Meeting

View File

@ -1,15 +1,9 @@
# Citrix ADC
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.
[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.
!!! note "Credentials"
Refer to [Citrix ADC credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/citrixadc/).
## Operations

View File

@ -1,14 +1,9 @@
# Clearbit
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.
[Clearbit](https://clearbit.com/) provides powerful products, and data APIs like contact enrichment, lead generation, financial compliance, and more to help businesses grow.
!!! note "Credentials"
Refer to [Clearbit credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/clearbit/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# ClickUp
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.
[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.
!!! note "Credentials"
Refer to [ClickUp credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/clickup/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Clockify
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.
[Clockify](https://clockify.me/) is a free time tracker and timesheet app for tracking work hours across projects.
!!! note "Credentials"
Refer to [Clockify credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/clockify/).
## Basic Operations

View File

@ -1,15 +1,9 @@
# Cloudflare
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.
[Cloudflare](https://www.cloudflare.com/){:target=_blank .external-link} provides a range of services to manage and protect your websites.
!!! note "Credentials"
Refer to [Cloudflare credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/cloudflare/).
## Operations

View File

@ -1,14 +1,9 @@
# Cockpit
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.
[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.
!!! note "Credentials"
Refer to [Cockpit credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/cockpit/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Coda
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.
[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.
!!! note "Credentials"
Refer to [Coda credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/coda/).
## Basic Operations

View File

@ -1,14 +1,10 @@
# CoinGecko
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.
[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.
!!! note "Credentials"
Refer to [CoinGecko credentials](https://docs.n8n.io/integrations/builtin/credentials/coingecko/) for guidance on setting up authentication.
The CoinGecko node does not require 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,14 +1,9 @@
# Contentful
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.
[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.
!!! note "Credentials"
Refer to [Contentful credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/contentful/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# ConvertKit
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.
[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.
!!! note "Credentials"
Refer to [ConvertKit credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/convertkit/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Copper
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.
[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.
!!! note "Credentials"
Refer to [Copper credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/copper/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Cortex
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.
[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.
!!! note "Credentials"
Refer to [Cortex credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/cortex/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# CrateDB
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.
[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.
!!! note "Credentials"
Refer to [CrateDB credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/cratedb/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Customer.io
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.
[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.
!!! note "Credentials"
Refer to [Customer.io credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/customerio/).
## Basic Operations

View File

@ -1,15 +1,9 @@
# DeepL
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.
[DeepL](https://deepL.com) is a machine translation service that allows you to translate text to different languages.
!!! note "Credentials"
Refer to [DeepL credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/deepl/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Demio
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.
[Demio](https://demio.com) provides a simple, no-download webinar experience and all the marketing tools you need to generate better results.
!!! note "Credentials"
Refer to [Demio credentials](https://docs.n8n.io/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
You can find authentication information for this node [here](/integrations/builtin/credentials/demio/).
## Basic Operations

View File

@ -1,14 +1,16 @@
# DHL
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.
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:
On this page, you'll find a list of operations the DHL node supports and links to more resources.
- Post & Parcel Germany
- DHL Global Forwarding
- DHL Freight
- DHL Express
- DHL Supply Chain
- DHL eCommerce Solutions (Asia-Pacific, US, Canada, EU)
!!! note "Credentials"
Refer to [DHL credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/dhl/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Discord
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.
[Discord](https://discord.com/) is a voice, video, and text communications platform for groups. Discord allows users to programmatically send messages using webhooks.
!!! note "Credentials"
Refer to [Discord credentials](https://docs.n8n.io/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.
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/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Discourse
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.
[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.
!!! note "Credentials"
Refer to [Discourse credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/discourse/).

View File

@ -1,14 +1,9 @@
# Disqus
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.
[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.
!!! note "Credentials"
Refer to [Disqus credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/disqus/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Drift
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.
[Drift](https://www.drift.com/) is a tool for managing conversations, engaging with customers, and collaborating with teammates.
!!! note "Credentials"
Refer to [Drift credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/drift/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Dropbox
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.
[Dropbox](https://dropbox.com) is a cloud-based file storage and sharing service, accessible through multiple devices.
!!! note "Credentials"
Refer to [Dropbox credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/dropbox/).
## Basic Operations

View File

@ -1,14 +1,11 @@
# Dropcontact
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.
[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.
On this page, you'll find a list of operations the Dropcontact node supports and links to more resources.
!!! note "Credentials"
Refer to [Dropcontact credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/dropcontact/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# E-goi
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.
[E-goi](https://www.e-goi.com/) is an omnichannel marketing automation platform.
!!! note "Credentials"
Refer to [E-goi credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/egoi/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Elasticsearch
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.
[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.
!!! note "Credentials"
Refer to [Elasticsearch credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/elasticsearch/).
## Basic operations

View File

@ -1,14 +1,10 @@
# Elastic Security
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.
[Elastic Security](https://www.elastic.co/security) helps security teams stop threats and at cloud scale, assisting with prevention, detection, and response.
!!! note "Credentials"
Refer to [Elastic Security credentials](https://docs.n8n.io/integrations/builtin/credentials/elasticsecurity/) for guidance on setting up authentication.
You can find authentication information for this node [here](/integrations/builtin/credentials/elasticsecurity/).
!!! 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,14 +1,9 @@
# Emelia
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.
[Emelia](https://emelia.io) is a cold-mailing tool.
!!! note "Credentials"
Refer to [Emelia credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/emelia/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# ERPNext
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.
[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.
!!! note "Credentials"
Refer to [ERPNext credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/erpnext/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Facebook Graph API
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.
[Facebook](https://www.facebook.com/) is a social networking site that makes it easy to connect and share with family and friends online.
!!! note "Credentials"
Refer to [Facebook Graph API credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/facebookgraph/).
## Basic operations

View File

@ -1,14 +1,9 @@
# FileMaker
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.
[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.
!!! note "Credentials"
Refer to [FileMaker credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/filemaker/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Flow
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.
[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.
!!! note "Credentials"
Refer to [Flow credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/flow/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Freshdesk
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.
[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.
!!! note "Credentials"
Refer to [Freshdesk credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/freshdesk/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Freshservice
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.
[Freshservice](https://www.freshservice.com/) is a cloud-based IT Service Management solution.
!!! note "Credentials"
Refer to [Freshservice credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/freshservice/).
## Basic operations

View File

@ -1,14 +1,9 @@
# Freshworks CRM
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.
[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.
!!! note "Credentials"
Refer to [Freshworks CRM credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/freshworkscrm/).
## Basic operations

View File

@ -1,14 +1,9 @@
# GetResponse
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.
[GetResponse](https://www.getresponse.com/) is an online platform that offers email marketing software, landing page creator, webinar hosting, and much more.
!!! note "Credentials"
Refer to [GetResponse credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/getresponse/).

View File

@ -1,14 +1,9 @@
# Ghost
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.
[Ghost](https://www.ghost.org/) is an open-source, professional publishing platform built on a Node.js technology stack.
!!! note "Credentials"
Refer to [Ghost credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/ghost/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# GitHub
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.
[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.
!!! note "Credentials"
Refer to [GitHub credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/github/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# GitLab
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.
[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.
!!! note "Credentials"
Refer to [GitLab credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/gitlab/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Gmail
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.
[Gmail](https://www.gmail.com){:target=_blank .external-link} is an email service developed by Google.
!!! note "Credentials"
Refer to [Gmail credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## Operations

View File

@ -1,18 +1,12 @@
# Google Ads
# Google Ads node
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.
[Google Ads](https://ads.google.com/){:targe=_blank .external-link} is a digital advertising service.
!!! note "Credentials"
Refer to [Google Ads credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## Basic operations
* Campaign
* Get all campaigns
* Get a campaign
* Get a campaign

View File

@ -1,15 +1,11 @@
# Google Analytics
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.
[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.
On this page, you'll find a list of operations the Google Analytics node supports and links to more resources.
!!! note "Credentials"
Refer to [Google Analytics credentials](https://docs.n8n.io/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.
Refer to the [Google Analytics credentials](https://docs.n8n.io/integrations/builtin/credentials/google/) for guidance on setting up authentication.
## Operations

View File

@ -1,14 +1,9 @@
# Google BigQuery
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.
[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.
!!! note "Credentials"
Refer to [Google BigQuery credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Google Books
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.
[Google Books](https://books.google.com) is a service from Google to browse, buy, or borrow books online.
!!! note "Credentials"
Refer to [Google Books credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Google Calendar
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.
[Google Calendar](https://www.google.com/calendar/) is a time-management and scheduling calendar service developed by Google.
!!! note "Credentials"
Refer to [Google Calendar credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Google Chat
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.
[Google Chat](https://chat.google.com/) is a messaging platform.
!!! note "Credentials"
Refer to [Google Chat credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Google Cloud Firestore
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.
[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.
!!! note "Credentials"
Refer to [Google Cloud Firestore credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Google Cloud Natural Language
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.
[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.
!!! note "Credentials"
Refer to [Google Cloud Natural Language credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Google Cloud Realtime Database
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.
[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.
!!! note "Credentials"
Refer to [Google Cloud Realtime Database credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Google Cloud Storage
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.
[Google Cloud Storage](https://cloud.google.com/storage){:target=_blank .external-link} offers object storage for data, with flexible capacity and retrieval.
!!! note "Credentials"
Refer to [Google Cloud Storage credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## Operations

View File

@ -1,14 +1,9 @@
# Google Contacts
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.
[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.
!!! note "Credentials"
Refer to [Google Contacts credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).

View File

@ -1,14 +1,9 @@
# Google Docs
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.
[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.
!!! note "Credentials"
Refer to [Google Docs credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## Basic operations

View File

@ -1,14 +1,9 @@
# Google Drive
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.
[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.
!!! note "Credentials"
Refer to [Google Drive credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## Basic Operations

View File

@ -1,14 +1,10 @@
# Google Perspective
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.
[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.
!!! note "Credentials"
Refer to [Google Perspective credentials](https://docs.n8n.io/integrations/builtin/credentials/google/) for guidance on setting up authentication.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
!!! 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,30 +1,24 @@
# Google Sheets
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.
[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.
!!! note "Credentials"
Refer to [Google Sheets credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## 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
@ -77,6 +71,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,14 +1,9 @@
# Google Slides
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.
[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.
!!! note "Credentials"
Refer to [Google Slides credentials](https://docs.n8n.io/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.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Google Tasks
The Google Tasks node allows you to automate work in Google Tasks, and integrate Google Tasks with other applications. n8n has built-in support for a wide range of Google Tasks features, including adding, updating, and retrieving contacts.
On this page, you'll find a list of operations the Google Tasks node supports and links to more resources.
[Google Tasks](https://tasks.google.com) is a task management service developed by Google. It keeps track of your daily tasks, organize multiple lists, and track important deadlines.
!!! note "Credentials"
Refer to [Google Tasks credentials](https://docs.n8n.io/integrations/builtin/credentials/google/) for guidance on setting up authentication.
!!! note "Examples and templates"
For usage examples and templates to help you get started, take a look at n8n's [Google Tasks integrations](https://n8n.io/integrations/google-tasks/){:target="_blank" .external-link} list.
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Google Translate
The Google Translate node allows you to automate work in Google Translate, and integrate Google Translate with other applications. n8n has built-in support for a wide range of Google Translate features, including translating languages.
On this page, you'll find a list of operations the Google Translate node supports and links to more resources.
[Google Translate](https://translate.google.com/) is a free multilingual translation service developed by Google to translate text and websites from one language into another.
!!! note "Credentials"
Refer to [Google Translate credentials](https://docs.n8n.io/integrations/builtin/credentials/google/) for guidance on setting up authentication.
!!! note "Examples and templates"
For usage examples and templates to help you get started, take a look at n8n's [Google Translate integrations](https://n8n.io/integrations/google-translate/){:target="_blank" .external-link} list
You can find authentication information for this node [here](/integrations/builtin/credentials/google/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Gotify
The Gotify node allows you to automate work in Gotify, and integrate Gotify with other applications. n8n has built-in support for a wide range of Gotify features, including creating, deleting, and getting messages.
On this page, you'll find a list of operations the Gotify node supports and links to more resources.
[Gotify](https://gotify.net/) is a server for sending and receiving messages.
!!! note "Credentials"
Refer to [Gotify credentials](https://docs.n8n.io/integrations/builtin/credentials/gotify/) for guidance on setting up authentication.
!!! note "Examples and templates"
For usage examples and templates to help you get started, take a look at n8n's [Gotify integrations](https://n8n.io/integrations/gotify/){:target="_blank" .external-link} list.
You can find authentication information for this node [here](/integrations/builtin/credentials/gotify/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# GoToWebinar
The GoToWebinar node allows you to automate work in GoToWebinar, and integrate GoToWebinar with other applications. n8n has built-in support for a wide range of GoToWebinar features, including creating, getting, and deleting attendees, organizers, and registrants.
On this page, you'll find a list of operations the GoToWebinar node supports and links to more resources.
[GoToWebinar](https://www.gotomeeting.com/webinar) is a platform that helps you create and deliver online video conferences.
!!! note "Credentials"
Refer to [GoToWebinar credentials](https://docs.n8n.io/integrations/builtin/credentials/gotowebinar/) for guidance on setting up authentication.
!!! note "Examples and templates"
For usage examples and templates to help you get started, take a look at n8n's [GoToWebinar integrations](https://n8n.io/integrations/gotowebinar/){:target="_blank" .external-link} list.
You can find authentication information for this node [here](/integrations/builtin/credentials/gotowebinar/).
## Basic Operations

View File

@ -1,14 +1,9 @@
# Grafana
The Grafana node allows you to automate work in Grafana, and integrate Grafana with other applications. n8n has built-in support for a wide range of Grafana features, including creating, updating, deleting, and getting dashboards, teams, and users.
On this page, you'll find a list of operations the Grafana node supports and links to more resources.
[Grafana](https://grafana.com/) is a multi-platform open source analytics and interactive visualization web application. It provides charts, graphs, and alerts for the web when connected to supported data sources.
!!! note "Credentials"
Refer to [Grafana credentials](https://docs.n8n.io/integrations/builtin/credentials/grafana/) for guidance on setting up authentication.
!!! note "Examples and templates"
For usage examples and templates to help you get started, take a look at n8n's [Grafana integrations](https://n8n.io/integrations/grafana/){:target="_blank" .external-link} list.
You can find authentication information for this node [here](/integrations/builtin/credentials/grafana/).
## Basic Operations

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