From 53c3d5e4f112e7dd5f53405a7611aa855116d54a Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Thu, 16 Feb 2023 14:08:55 +0000 Subject: [PATCH 01/11] 0.216.0-release-note --- docs/release-notes.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/docs/release-notes.md b/docs/release-notes.md index 744cf7a8b..ce283017c 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -13,6 +13,43 @@ hide: New features and bug fixes for n8n. +
+ +## n8n@0.216.0 + +View the [commits](https://github.com/n8n-io/n8n/compare/n8n@0.215.2...n8n@0.216.0){:target=_blank .external-link} for this version.
+**Release date:** 2023-02-16 + +This release contains new features, node enhancements, and bug fixes. + +### New features + +* Add workflow and credential sharing access e2e tests. +* Editor: add correct credential owner contact details for readonly credentials. +* Editor: add most important native properties and methods to autocomplete. +* Editor: update to personalization survey v4. +* Update telemetry API endpoints. + +### Node enhancements + +* GitHub node: update code to use resource locator component. +* GitHub trigger node: update code to use resource locator component. +* Notion node: add option to set icons when creating pages or database pages. +* Slack node: add support for manually inputting a channel name for channel operations. + +### Bug fixes + +* Core: fix data transformation functions. +* Core: remove unnecessary info from GET `/workflows` response. +* Bubble node: fix pagination issue when returning all objects. +* HTTP Request Node: ignore empty body when auto-detecting JSON. + +### Contributors + +[feelgood-interface](https://github.com/feelgood-interface){:target=_blank .external-link} + +
+
## n8n@0.215.2 From edfa46b4270dcf89476f75c8a01cca63ed9c6c0d Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Mon, 20 Feb 2023 09:59:07 +0000 Subject: [PATCH 02/11] update GTM code --- overrides/main.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/overrides/main.html b/overrides/main.html index 380073653..b66f5f79b 100644 --- a/overrides/main.html +++ b/overrides/main.html @@ -6,14 +6,14 @@ new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); - })(window,document,'script','dataLayer','GTM-5B8KCRR'); + })(window,document,'script','dataLayer','GTM-K86VCV3'); {% endblock %} {% block container %} - From be7a0f24da4d4332d0061c104d19d68337c56695 Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Mon, 20 Feb 2023 12:30:20 +0000 Subject: [PATCH 03/11] add data functions with arguments --- _yaml/data-functions.yml | 624 +++++++++++++++++++-------------------- 1 file changed, 312 insertions(+), 312 deletions(-) diff --git a/_yaml/data-functions.yml b/_yaml/data-functions.yml index f7ced7e7e..52d9a12c6 100644 --- a/_yaml/data-functions.yml +++ b/_yaml/data-functions.yml @@ -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 ". + - 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 ". - 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 MDN | Intl.NumberFormat() for more information. - # returns: String - # description: This is a wrapper around Intl.NumberFormat(). 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 MDN | Intl.NumberFormat() for more information. + returns: String + description: This is a wrapper around Intl.NumberFormat(). 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 Luxon | Table of tokens 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 Luxon | Table of tokens 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. From 98403858dec3c4747132e9ba81f0fe7b93b21fce Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Mon, 20 Feb 2023 13:30:12 +0000 Subject: [PATCH 04/11] update error handling doc --- docs/flow-logic/error-handling/memory-errors.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/flow-logic/error-handling/memory-errors.md b/docs/flow-logic/error-handling/memory-errors.md index ef020e27c..ffda1e587 100644 --- a/docs/flow-logic/error-handling/memory-errors.md +++ b/docs/flow-logic/error-handling/memory-errors.md @@ -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. From 1a8ce473cd8a17abecf3afafc07ee85c7c0820da Mon Sep 17 00:00:00 2001 From: Deborah Date: Mon, 20 Feb 2023 13:44:45 +0000 Subject: [PATCH 05/11] Update docs/flow-logic/error-handling/memory-errors.md --- docs/flow-logic/error-handling/memory-errors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/flow-logic/error-handling/memory-errors.md b/docs/flow-logic/error-handling/memory-errors.md index ffda1e587..d3d717133 100644 --- a/docs/flow-logic/error-handling/memory-errors.md +++ b/docs/flow-logic/error-handling/memory-errors.md @@ -4,7 +4,7 @@ n8n doesn't restrict the amount of data each node can fetch and process. While t ## Identifying out of memory situations -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.)**. +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. From cbf98b466220e5aaaf51c583645e175604fa6d4f Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Mon, 20 Feb 2023 16:47:30 +0000 Subject: [PATCH 06/11] add EXECUTIONS_DATA_PRUNE_MAX_COUNT and quick overhaul of execution data doc --- .../environment-variables.md | 1 + docs/hosting/scaling/execution-data.md | 63 +++++++++---------- docs/hosting/scaling/index.md | 6 +- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/docs/hosting/environment-variables/environment-variables.md b/docs/hosting/environment-variables/environment-variables.md index 9ac8873b2..edfc12d6c 100644 --- a/docs/hosting/environment-variables/environment-variables.md +++ b/docs/hosting/environment-variables/environment-variables.md @@ -152,6 +152,7 @@ Refer to [User management](/hosting/authentication/user-management-self-hosted/) | `EXECUTIONS_DATA_PRUNE` | Boolean | `false` | Whether to delete data of past executions on a rolling basis. | | `EXECUTIONS_DATA_MAX_AGE` | Number | `336` | The execution age (in hours) before it's deleted. | | `EXECUTIONS_DATA_PRUNE_TIMEOUT` | Number | `3600` | The timeout (in seconds) after n8n prunes execution data. | +| `EXECUTIONS_DATA_PRUNE_MAX_COUNT` | Number | `0` (no limit) | Maximum number of executions to keep in the database. | ## Logs diff --git a/docs/hosting/scaling/execution-data.md b/docs/hosting/scaling/execution-data.md index 7b9fb8f31..8e19ba351 100644 --- a/docs/hosting/scaling/execution-data.md +++ b/docs/hosting/scaling/execution-data.md @@ -1,34 +1,32 @@ # Execution data -Depending on your executions settings and volume, your n8n database can quickly swell in size and eventually run out of storage. +Depending on your executions settings and volume, your n8n database can grow in size and eventually run out of storage. -To avoid this and ensure continued proper functionality, it is recommended to ensure you are only saving the desired data and to enable pruning of old executions data. +To avoid this, n8n recommends that you don't save unnecessary data, and enable pruning of old executions data. -This is done by configuring the corresponding [environment variables](/hosting/environment-variables/environment-variables/#executions). +To do this, configure the corresponding [environment variables](/hosting/environment-variables/environment-variables/#executions). -## Saving data +## Reduce saved data -You can select which executions data is saved, for example only those executions that result in an `Error`, so that only those records you want to keep are saved in the database. +You can select which executions data n8n saves. For example, you can save only executions that result in an `Error`. - - ```sh -// Save executions ending in errors +# npm +# Save executions ending in errors export EXECUTIONS_DATA_SAVE_ON_ERROR=all -// Save successful executions +# Save successful executions export EXECUTIONS_DATA_SAVE_ON_SUCCESS=all -// Don't save node progress for each execution +# Don't save node progress for each execution export EXECUTIONS_DATA_SAVE_ON_PROGRESS=false -// Don't save manually launched executions +# Don't save manually launched executions export EXECUTIONS_DATA_SAVE_MANUAL_EXECUTIONS=false ``` - - ```sh +# Docker docker run -it --rm \ --name n8n \ -p 5678:5678 \ @@ -38,10 +36,9 @@ docker run -it --rm \ -e EXECUTIONS_DATA_SAVE_MANUAL_EXECUTIONS=false \ n8nio/n8n ``` - - ```yaml +# Docker Compose n8n: environment: - EXECUTIONS_DATA_SAVE_ON_ERROR=all @@ -49,30 +46,28 @@ n8n: - EXECUTIONS_DATA_SAVE_ON_PROGRESS=true - EXECUTIONS_DATA_SAVE_MANUAL_EXECUTIONS=false ``` - - - -!!! note "Keep in mind" - These settings can also be configured on an individual workflow basis via the [workflow settings](/workflows/workflows/#workflow-settings). -### Enable data pruning +!!! note "Configuration at workflow level" + You can also configure these settings on an individual workflow basis using the [workflow settings](/workflows/workflows/#workflow-settings). + + +## Enable data pruning + +You can enable data pruning to automatically delete executions after a given time period. If you don't set `EXECUTIONS_DATA_MAX_AGE`, 336 hours (14 days) is the default. -You can enable data pruning to automatically delete execution data older than a desired time period. If no `EXECUTIONS_DATA_MAX_AGE` is set, then 336 hours (14 days) is used by default. - - ```sh -// Activate automatic data pruning +# npm +# Activate automatic data pruning export EXECUTIONS_DATA_PRUNE=true -// Number of hours after execution data will be deleted +# Number of hours after execution that n8n deletes data export EXECUTIONS_DATA_MAX_AGE=168 ``` - - ```sh +# Docker docker run -it --rm \ --name n8n \ -p 5678:5678 \ @@ -80,17 +75,17 @@ docker run -it --rm \ -e EXECUTIONS_DATA_MAX_AGE=168 \ n8nio/n8n ``` - - ```yaml +# Docker Compose n8n: environment: - EXECUTIONS_DATA_PRUNE=true - EXECUTIONS_DATA_MAX_AGE=168 ``` - - -!!! 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. + +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. + +!!! note "SQLite" + If you run n8n using the default SQLite database, the disk-space of any pruned data isn't automatically freed up but rather reused for future executions data. To free up this space configure the `DB_SQLITE_VACUUM_ON_STARTUP` [environment variable](/hosting/environment-variables/environment-variables/#sqlite) or manually run the [VACUUM](https://www.sqlite.org/lang_vacuum.html) operation. diff --git a/docs/hosting/scaling/index.md b/docs/hosting/scaling/index.md index bf2d25347..c2a33444a 100644 --- a/docs/hosting/scaling/index.md +++ b/docs/hosting/scaling/index.md @@ -1,3 +1,7 @@ # Scaling n8n -n8n can be run in different [modes](/hosting/scaling/execution-modes-processes/) depending on your needs. The `queue` mode provides the best scalability, and its configuration is detailed in [Queue mode](/hosting/scaling/queue-mode/). +When running n8n at scale, with a large number of users, workflows, or executions, you need to change your n8n configuration to ensure good performance. + +n8n can run in different [modes](/hosting/scaling/execution-modes-processes/) depending on your needs. The `queue` mode provides the best scalability. Refer to [Queue mode](/hosting/scaling/queue-mode/) for configuration details. + +You can configure data saving and pruning to improve database performance. Refer to [Execution data](/hosting/scaling/execution-data/) for details. From d141f2941ba0ba977b16fe85acfb913529d76eb0 Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Mon, 20 Feb 2023 16:54:35 +0000 Subject: [PATCH 07/11] add placeholders - TODO: add values --- docs/hosting/scaling/execution-data.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/hosting/scaling/execution-data.md b/docs/hosting/scaling/execution-data.md index 8e19ba351..e8759e662 100644 --- a/docs/hosting/scaling/execution-data.md +++ b/docs/hosting/scaling/execution-data.md @@ -56,6 +56,8 @@ n8n: 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. + ```sh # npm @@ -64,6 +66,9 @@ export EXECUTIONS_DATA_PRUNE=true # Number of hours after execution that n8n deletes data export EXECUTIONS_DATA_MAX_AGE=168 + +# Number of executions to store +export EXECUTIONS_DATA_PRUNE_MAX_COUNT= ``` ```sh @@ -73,6 +78,7 @@ docker run -it --rm \ -p 5678:5678 \ -e EXECUTIONS_DATA_PRUNE=true \ -e EXECUTIONS_DATA_MAX_AGE=168 \ + -e EXECUTIONS_DATA_PRUNE_MAX_COUNT= \ n8nio/n8n ``` @@ -82,10 +88,9 @@ n8n: environment: - EXECUTIONS_DATA_PRUNE=true - EXECUTIONS_DATA_MAX_AGE=168 + - EXECUTIONS_DATA_PRUNE_MAX_COUNT= ``` -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. - !!! 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. From 1ed3d53d934cfbb626dc60a3ac39c6d30b8fbf86 Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Tue, 21 Feb 2023 09:46:24 +0000 Subject: [PATCH 08/11] add example limits --- docs/hosting/scaling/execution-data.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/hosting/scaling/execution-data.md b/docs/hosting/scaling/execution-data.md index e8759e662..9dc5363d2 100644 --- a/docs/hosting/scaling/execution-data.md +++ b/docs/hosting/scaling/execution-data.md @@ -56,7 +56,7 @@ n8n: 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. +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. ```sh @@ -68,7 +68,7 @@ export EXECUTIONS_DATA_PRUNE=true export EXECUTIONS_DATA_MAX_AGE=168 # Number of executions to store -export EXECUTIONS_DATA_PRUNE_MAX_COUNT= +export EXECUTIONS_DATA_PRUNE_MAX_COUNT=50000 ``` ```sh @@ -78,7 +78,7 @@ docker run -it --rm \ -p 5678:5678 \ -e EXECUTIONS_DATA_PRUNE=true \ -e EXECUTIONS_DATA_MAX_AGE=168 \ - -e EXECUTIONS_DATA_PRUNE_MAX_COUNT= \ + -e EXECUTIONS_DATA_PRUNE_MAX_COUNT=50000 \ n8nio/n8n ``` @@ -88,7 +88,7 @@ n8n: environment: - EXECUTIONS_DATA_PRUNE=true - EXECUTIONS_DATA_MAX_AGE=168 - - EXECUTIONS_DATA_PRUNE_MAX_COUNT= + - EXECUTIONS_DATA_PRUNE_MAX_COUNT=50000 ``` From a4a3a8076b53703f26c9684e7982fbf3faee3b47 Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Wed, 22 Feb 2023 09:45:00 +0000 Subject: [PATCH 09/11] release note --- docs/release-notes.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/release-notes.md b/docs/release-notes.md index ce283017c..466edd370 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -13,6 +13,24 @@ hide: New features and bug fixes for n8n. +
+ +## n8n@0.216.1 + +View the [commits](https://github.com/n8n-io/n8n/compare/n8n@0.216.0...n8n@0.216.1){:target=_blank .external-link} for this version.
+**Release date:** 2023-02-21 + +This is a bug fix release. + +### Bug fixes + +* Core: don't allow arbitrary path traversal in BinaryDataManager. +* Core: don't allow arbitrary path traversal in the credential-translation endpoint. +* Core: don't explicitly bypass auth on URLs containing `.svg`. +* Core: user update endpoint should only allow updating email, firstName, and lastName. + +
+
## n8n@0.216.0 From 5c1b1a036cfb5d6fc19335b8e7d89de68ee04ee2 Mon Sep 17 00:00:00 2001 From: Deborah Date: Wed, 22 Feb 2023 12:18:39 +0000 Subject: [PATCH 10/11] Revert "Update n8n-nodes-base.actionnetwork.md" --- .../app-nodes/n8n-nodes-base.actionnetwork.md | 11 ++--------- .../app-nodes/n8n-nodes-base.activecampaign.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.adalo.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.affinity.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.agilecrm.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.airtable.md | 10 ++-------- .../builtin/app-nodes/n8n-nodes-base.amqp.md | 8 ++------ .../app-nodes/n8n-nodes-base.apitemplateio.md | 10 ++-------- .../builtin/app-nodes/n8n-nodes-base.asana.md | 8 ++------ .../builtin/app-nodes/n8n-nodes-base.automizy.md | 9 ++------- .../app-nodes/n8n-nodes-base.autopilot.md | 11 ++--------- .../n8n-nodes-base.awscertificatemanager.md | 9 ++------- .../app-nodes/n8n-nodes-base.awscomprehend.md | 9 ++------- .../app-nodes/n8n-nodes-base.awsdynamodb.md | 10 ++-------- .../builtin/app-nodes/n8n-nodes-base.awselb.md | 11 +---------- .../app-nodes/n8n-nodes-base.awslambda.md | 9 ++------- .../app-nodes/n8n-nodes-base.awsrekognition.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.awss3.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.awsses.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.awssns.md | 11 +++-------- .../builtin/app-nodes/n8n-nodes-base.awssqs.md | 9 ++------- .../app-nodes/n8n-nodes-base.awstextract.md | 8 ++------ .../app-nodes/n8n-nodes-base.awstranscribe.md | 16 ++++------------ .../builtin/app-nodes/n8n-nodes-base.bamboohr.md | 9 ++------- .../app-nodes/n8n-nodes-base.bannerbear.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.baserow.md | 9 ++------- .../app-nodes/n8n-nodes-base.beeminder.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.bitly.md | 9 ++------- .../app-nodes/n8n-nodes-base.bitwarden.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.box.md | 9 ++------- .../app-nodes/n8n-nodes-base.brandfetch.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.bubble.md | 10 ++-------- .../app-nodes/n8n-nodes-base.chargebee.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.circleci.md | 9 ++------- .../app-nodes/n8n-nodes-base.ciscowebex.md | 8 ++------ .../app-nodes/n8n-nodes-base.citrixadc.md | 10 ++-------- .../builtin/app-nodes/n8n-nodes-base.clearbit.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.clickup.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.clockify.md | 9 ++------- .../app-nodes/n8n-nodes-base.cloudflare.md | 10 ++-------- .../builtin/app-nodes/n8n-nodes-base.cockpit.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.coda.md | 9 ++------- .../app-nodes/n8n-nodes-base.coingecko.md | 8 ++------ .../app-nodes/n8n-nodes-base.contentful.md | 9 ++------- .../app-nodes/n8n-nodes-base.convertkit.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.copper.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.cortex.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.cratedb.md | 9 ++------- .../app-nodes/n8n-nodes-base.customerio.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.deepl.md | 10 ++-------- .../builtin/app-nodes/n8n-nodes-base.demio.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.dhl.md | 14 ++++++++------ .../builtin/app-nodes/n8n-nodes-base.discord.md | 9 ++------- .../app-nodes/n8n-nodes-base.discourse.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.disqus.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.drift.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.dropbox.md | 9 ++------- .../app-nodes/n8n-nodes-base.dropcontact.md | 9 +++------ .../builtin/app-nodes/n8n-nodes-base.egoi.md | 9 ++------- .../app-nodes/n8n-nodes-base.elasticsearch.md | 9 ++------- .../app-nodes/n8n-nodes-base.elasticsecurity.md | 8 ++------ .../builtin/app-nodes/n8n-nodes-base.emelia.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.erpnext.md | 9 ++------- .../app-nodes/n8n-nodes-base.facebookgraphapi.md | 9 ++------- .../app-nodes/n8n-nodes-base.filemaker.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.flow.md | 9 ++------- .../app-nodes/n8n-nodes-base.freshdesk.md | 9 ++------- .../app-nodes/n8n-nodes-base.freshservice.md | 9 ++------- .../app-nodes/n8n-nodes-base.freshworkscrm.md | 9 ++------- .../app-nodes/n8n-nodes-base.getresponse.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.ghost.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.github.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.gitlab.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.gmail.md | 9 ++------- .../app-nodes/n8n-nodes-base.googleads.md | 14 ++++---------- .../app-nodes/n8n-nodes-base.googleanalytics.md | 8 ++------ .../app-nodes/n8n-nodes-base.googlebigquery.md | 9 ++------- .../app-nodes/n8n-nodes-base.googlebooks.md | 9 ++------- .../app-nodes/n8n-nodes-base.googlecalendar.md | 9 ++------- .../app-nodes/n8n-nodes-base.googlechat.md | 9 ++------- .../n8n-nodes-base.googlecloudfirestore.md | 9 ++------- .../n8n-nodes-base.googlecloudnaturallanguage.md | 9 ++------- ...n8n-nodes-base.googlecloudrealtimedatabase.md | 9 ++------- .../n8n-nodes-base.googlecloudstorage.md | 9 ++------- .../app-nodes/n8n-nodes-base.googlecontacts.md | 9 ++------- .../app-nodes/n8n-nodes-base.googledocs.md | 9 ++------- .../app-nodes/n8n-nodes-base.googledrive.md | 9 ++------- .../n8n-nodes-base.googleperspective.md | 8 ++------ .../app-nodes/n8n-nodes-base.googlesheets.md | 9 ++------- .../app-nodes/n8n-nodes-base.googleslides.md | 9 ++------- .../app-nodes/n8n-nodes-base.googletasks.md | 9 ++------- .../app-nodes/n8n-nodes-base.googletranslate.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.gotify.md | 9 ++------- .../app-nodes/n8n-nodes-base.gotowebinar.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.grafana.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.grist.md | 9 ++------- .../app-nodes/n8n-nodes-base.gsuiteadmin.md | 10 ++-------- .../app-nodes/n8n-nodes-base.hackernews.md | 9 ++------- .../builtin/app-nodes/n8n-nodes-base.halopsa.md | 9 ++------- 99 files changed, 209 insertions(+), 707 deletions(-) diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.actionnetwork.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.actionnetwork.md index a8cd12b26..6d101d6c8 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.actionnetwork.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.actionnetwork.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.activecampaign.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.activecampaign.md index 3c7b8e32a..2b1702dc3 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.activecampaign.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.activecampaign.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.adalo.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.adalo.md index 7303662de..8c6d801b8 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.adalo.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.adalo.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.affinity.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.affinity.md index 0d6336c45..600444c6f 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.affinity.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.affinity.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.agilecrm.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.agilecrm.md index cb8879052..cdc1df107 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.agilecrm.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.agilecrm.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.airtable.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.airtable.md index 563d5c9de..64f059c13 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.airtable.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.airtable.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.amqp.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.amqp.md index df3ce7a54..e0af60f6d 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.amqp.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.amqp.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.apitemplateio.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.apitemplateio.md index 4e75f6bd8..c0ae86d50 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.apitemplateio.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.apitemplateio.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.asana.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.asana.md index 30f24be94..0a10db80c 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.asana.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.asana.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.automizy.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.automizy.md index 62aa8fbb0..0ab1a467d 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.automizy.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.automizy.md @@ -1,14 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [Automizy integrations](https://n8n.io/integrations/automizy/){:target=_blank .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/automizy/). ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.autopilot.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.autopilot.md index b34a103a4..d4cb769ab 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.autopilot.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.autopilot.md @@ -1,16 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [Autopilot integrations](https://n8n.io/integrations/autopilot/){:target=_blank .external-link} list. - - + You can find authentication information for this node [here](/integrations/builtin/credentials/autopilot/). ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscertificatemanager.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscertificatemanager.md index 31dc84609..0ebc79317 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscertificatemanager.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscertificatemanager.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscomprehend.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscomprehend.md index 9f2ace8c8..eabdbd1b5 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscomprehend.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awscomprehend.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsdynamodb.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsdynamodb.md index 525ebcdd0..85127d708 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsdynamodb.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsdynamodb.md @@ -1,15 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [AWS DynamoDB integrations](https://n8n.io/integrations/aws-dynamodb/){:target=_blank .external-link} list. - + You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). ## Basic operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awselb.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awselb.md index 1e3959c5a..c835a76b1 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awselb.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awselb.md @@ -1,15 +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. - -!!! note "Credentials" - Refer to [AWS ELB credentials](https://docs.n8n.io/integrations/builtin/credentials/aws/){:target=_blank .external-link} for guidance on setting up authentication. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [AWS Elastic Load Balancing integrations](https://n8n.io/integrations/aws-elb/){:target=_blank .external-link} list. - +[AWS Elastic Load Balancing](https://aws.amazon.com/elasticloadbalancing/){:target=_blank .external-link} (ELB) automatically distributes incoming application traffic across multiple targets and virtual appliances in one or more Availability Zones (AZs). !!! note "Credentials" You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awslambda.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awslambda.md index b68dfa2fb..5b61af37c 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awslambda.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awslambda.md @@ -1,14 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [AWS Lambda integrations](https://n8n.io/integrations/aws-lambda/){:target=_blank .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsrekognition.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsrekognition.md index 738a37461..cae7f2aff 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsrekognition.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsrekognition.md @@ -1,14 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [AWS Rekognition integrations](https://n8n.io/integrations/aws-rekognition/){:target=_blank .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awss3.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awss3.md index d7f0bdc53..65445d8cb 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awss3.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awss3.md @@ -1,14 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [AWS S3 integrations](https://n8n.io/integrations/aws-s3/){:target=_blank .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsses.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsses.md index 2971dbd8e..87b026996 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsses.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awsses.md @@ -1,14 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [AWS SES integrations](https://n8n.io/integrations/aws-ses/){:target=_blank .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssns.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssns.md index 4ce3df864..3d9d41222 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssns.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssns.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssqs.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssqs.md index 03c361cbe..9feed5359 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssqs.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awssqs.md @@ -1,14 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [AWS SQS integrations](https://n8n.io/integrations/aws-sqs/){:target=_blank .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstextract.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstextract.md index fa69eaa09..cb2edbf90 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstextract.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstextract.md @@ -1,14 +1,10 @@ # 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. + You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [AWS Textract integrations](https://n8n.io/integrations/aws-textract/){:target=_blank .external-link} list. ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstranscribe.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstranscribe.md index d61d29ccc..db0d67bfa 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstranscribe.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.awstranscribe.md @@ -1,17 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [AWS Transcribe integrations](https://n8n.io/integrations/aws-transcribe/){:target=_blank .external-link} list. - - - + You can find authentication information for this node [here](/integrations/builtin/credentials/aws/). ## Basic Operations @@ -24,9 +16,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]() diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bamboohr.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bamboohr.md index 74ffdcc29..94acabe2b 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bamboohr.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bamboohr.md @@ -1,14 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [BambooHR integrations](https://n8n.io/integrations/bamboohr/){:target=_blank .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/bamboohr/). ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bannerbear.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bannerbear.md index 92e6c840c..baa3f2808 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bannerbear.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bannerbear.md @@ -1,14 +1,9 @@ # Bannerbear -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. +[Bannerbear](https://www.bannerbear.com/) is an API-based image generation service that automatically generates variations of graphic templates. !!! note "Credentials" - Refer to [Bannerbear credentials](https://docs.n8n.io/integrations/builtin/credentials/bannerbear/) for guidance on setting up authentication. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [Bannerbear integrations](https://n8n.io/integrations/bannerbear/){:target=_blank .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/bannerbear/). ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.baserow.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.baserow.md index 11143ad4a..2a3ab2dce 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.baserow.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.baserow.md @@ -1,14 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [Baserow integrations](https://n8n.io/integrations/baserow/){:target=_blank .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/baserow/). ## Basic operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.beeminder.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.beeminder.md index b984d5318..39c1ba48a 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.beeminder.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.beeminder.md @@ -1,14 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [Beeminder integrations](https://n8n.io/integrations/beeminder/){:target=_blank .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/beeminder/). diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitly.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitly.md index ec925689e..14cdb032a 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitly.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitly.md @@ -1,14 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [Bitly integrations](https://n8n.io/integrations/bitly/){:target=_blank .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/bitly/). ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitwarden.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitwarden.md index a6c789dd6..08388fbf5 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitwarden.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bitwarden.md @@ -1,14 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [Bitwarden integrations](https://n8n.io/integrations/bitwarden/){:target=_blank .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/bitwarden/). diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.box.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.box.md index 592d97867..aef32ffe5 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.box.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.box.md @@ -1,15 +1,10 @@ # 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. + You can find authentication information for this node [here](/integrations/builtin/credentials/box/). -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [Box integrations](https://n8n.io/integrations/box/){:target=_blank .external-link} list. - ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.brandfetch.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.brandfetch.md index 6d0dab6fe..5621792ec 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.brandfetch.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.brandfetch.md @@ -1,14 +1,9 @@ # 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 company’s 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [Brandfetch integrations](https://n8n.io/integrations/brandfetch/){:target=_blank .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/brandfetch/). diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bubble.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bubble.md index d519120f9..8b3b6dac9 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.bubble.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.bubble.md @@ -1,15 +1,9 @@ # 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. - -!!! note "Examples the Templates" - For usage examples and templates to help you get started, take a look at n8n's [Bubble integrations](https://n8n.io/integrations/bubble/){:target=_blank .external-link} list. - + You can find authentication information for this node [here](/integrations/builtin/credentials/bubble/). ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.chargebee.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.chargebee.md index 8b31b1695..e0cbbc876 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.chargebee.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.chargebee.md @@ -1,14 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [Chargebee integrations](https://n8n.io/integrations/chargebee/){:target=_blank .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/chargebee/). ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.circleci.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.circleci.md index d874bdc6b..303857ad0 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.circleci.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.circleci.md @@ -1,14 +1,9 @@ # 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. - -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [CircleCI integrations](https://n8n.io/integrations/circleci/){:target=_blank .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/circleci/). ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.ciscowebex.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.ciscowebex.md index cc1902b73..a888c4ec6 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.ciscowebex.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.ciscowebex.md @@ -1,14 +1,10 @@ # 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. + You can find authentication information for this node [here](/integrations/builtin/credentials/ciscowebex/). -!!! note "Examples and Templates" - For usage examples and templates to help you get started, take a look at n8n's [Webex integrations](https://n8n.io/integrations/webex-by-cisco/){:target=_blank .external-link} list. ## Basic operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.citrixadc.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.citrixadc.md index 8f37ca499..ee85feb00 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.citrixadc.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.citrixadc.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.clearbit.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.clearbit.md index 3b8ca6171..5f34cbf4b 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.clearbit.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.clearbit.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.clickup.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.clickup.md index 211b193bd..96f6b32ee 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.clickup.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.clickup.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.clockify.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.clockify.md index 209e822ae..72c3a9f32 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.clockify.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.clockify.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cloudflare.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cloudflare.md index 3a2f35896..604d25436 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cloudflare.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cloudflare.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cockpit.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cockpit.md index b4944b6d3..f7a08e3f2 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cockpit.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cockpit.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.coda.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.coda.md index 163d27626..b33b02132 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.coda.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.coda.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.coingecko.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.coingecko.md index e95d418c9..af6c1b4e8 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.coingecko.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.coingecko.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.contentful.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.contentful.md index b59333efe..4ad6a1307 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.contentful.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.contentful.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.convertkit.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.convertkit.md index ac037e2c7..d8666f26f 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.convertkit.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.convertkit.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.copper.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.copper.md index b3fce50c1..9bd4f1000 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.copper.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.copper.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cortex.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cortex.md index 9c7898321..1a286757f 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cortex.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cortex.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cratedb.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cratedb.md index 0fa931089..a802358a7 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.cratedb.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.cratedb.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.customerio.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.customerio.md index ae81b43be..0f00bf060 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.customerio.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.customerio.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.deepl.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.deepl.md index 3428b06a2..1eba271c2 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.deepl.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.deepl.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.demio.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.demio.md index 7a3985f7b..11fc12828 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.demio.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.demio.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.dhl.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.dhl.md index 517f39ca9..e9e611fc6 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.dhl.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.dhl.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.discord.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.discord.md index 0b097b93d..2e1ab323c 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.discord.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.discord.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.discourse.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.discourse.md index 2ef8f914d..0d70f38d0 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.discourse.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.discourse.md @@ -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/). diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.disqus.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.disqus.md index 3dd6e099b..a867c8b2f 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.disqus.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.disqus.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.drift.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.drift.md index 0830fbebf..0877b048c 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.drift.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.drift.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropbox.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropbox.md index e4b953115..c5f557432 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropbox.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropbox.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropcontact.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropcontact.md index a5af70ba5..c6f8b638c 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropcontact.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.dropcontact.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.egoi.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.egoi.md index 281586d32..b39ffc352 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.egoi.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.egoi.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsearch.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsearch.md index d8241a6f7..721129e18 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsearch.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsearch.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsecurity.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsecurity.md index 525dc70f7..421045907 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsecurity.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.elasticsecurity.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.emelia.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.emelia.md index 72f1fa64b..41e77d193 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.emelia.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.emelia.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.erpnext.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.erpnext.md index 84a54fb33..6be1b6bda 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.erpnext.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.erpnext.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.facebookgraphapi.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.facebookgraphapi.md index 1251e01b6..49ff36407 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.facebookgraphapi.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.facebookgraphapi.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.filemaker.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.filemaker.md index 85cf4e619..43a10a1be 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.filemaker.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.filemaker.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.flow.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.flow.md index 894466786..cdee83e31 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.flow.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.flow.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshdesk.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshdesk.md index 0fa83f62d..40dad050b 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshdesk.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshdesk.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshservice.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshservice.md index 4ae17d696..38bc17a96 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshservice.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshservice.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshworkscrm.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshworkscrm.md index 399121c06..5c74f679b 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshworkscrm.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.freshworkscrm.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.getresponse.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.getresponse.md index 7d8caef51..361a16667 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.getresponse.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.getresponse.md @@ -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/). diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.ghost.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.ghost.md index bff8cda89..4179563aa 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.ghost.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.ghost.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.github.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.github.md index f168c33fd..0482ec779 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.github.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.github.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gitlab.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gitlab.md index 25bd96cbd..b80add806 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gitlab.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gitlab.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gmail.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gmail.md index 0e50d37ca..f0e976206 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gmail.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gmail.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleads.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleads.md index a4d7f3994..957e39324 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleads.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleads.md @@ -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 \ No newline at end of file diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleanalytics.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleanalytics.md index 3d150970c..a3f770b7a 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleanalytics.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleanalytics.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebigquery.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebigquery.md index f974f98d2..efe0232c3 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebigquery.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebigquery.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebooks.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebooks.md index f73ad0dc4..4afee3077 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebooks.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlebooks.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar.md index 8f5e0f967..1c26c393d 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlechat.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlechat.md index 14c3a5b25..a8db7e7ae 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlechat.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlechat.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudfirestore.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudfirestore.md index 540cba97a..8a225a7f1 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudfirestore.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudfirestore.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudnaturallanguage.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudnaturallanguage.md index 81aa528a9..853f9f3c4 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudnaturallanguage.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudnaturallanguage.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudrealtimedatabase.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudrealtimedatabase.md index abdc65b32..c3a86a53e 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudrealtimedatabase.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudrealtimedatabase.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudstorage.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudstorage.md index 8374c778d..2d81d5e2f 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudstorage.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudstorage.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecontacts.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecontacts.md index ee6e1f794..37ade402d 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecontacts.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlecontacts.md @@ -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/). diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledocs.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledocs.md index 0bc9a6252..74586c1f8 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledocs.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledocs.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledrive.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledrive.md index d2205eed7..3bcda31ab 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledrive.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googledrive.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleperspective.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleperspective.md index 9ad1117c4..da1298973 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleperspective.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleperspective.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets.md index 1346e1a34..afbbd2717 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets.md @@ -1,14 +1,9 @@ # 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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleslides.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleslides.md index d64455f99..65013bcca 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleslides.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googleslides.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletasks.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletasks.md index 3f45ceb92..69f0de9f8 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletasks.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletasks.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletranslate.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletranslate.md index 8adb11e91..e57a724f9 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletranslate.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googletranslate.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotify.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotify.md index 5c64bd318..26fae4cfd 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotify.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotify.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotowebinar.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotowebinar.md index 6157c38a7..44a60521d 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotowebinar.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gotowebinar.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.grafana.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.grafana.md index fcb371674..6110abb97 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.grafana.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.grafana.md @@ -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 diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.grist.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.grist.md index 92118dd15..f56b37399 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.grist.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.grist.md @@ -1,14 +1,9 @@ # Grist -The Grist node allows you to automate work in Grist, and integrate Grist with other applications. n8n has built-in support for a wide range of Grist features, including creating, updating, deleting, and reading rows in a table. - -On this page, you'll find a list of operations the Grist node supports and links to more resources. +[Grist](https://getgrist.com/) combines the flexibility of a spreadsheet with the robustness of a database to organize your data, your way. !!! note "Credentials" - Refer to [Grist credentials](https://docs.n8n.io/integrations/builtin/credentials/grist/) for guidance on setting up authentication. - -!!! note "Examples and templates" - For usage examples and templates to help you get started, take a look at n8n's [Grist integrations](https://n8n.io/integrations/grist/){:target="_blank" .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/grist/). ## Basic operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gsuiteadmin.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gsuiteadmin.md index 3628b4707..7d5843384 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.gsuiteadmin.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.gsuiteadmin.md @@ -1,15 +1,9 @@ # G Suite Admin -The G Suite Admin node allows you to automate work in G Suite Admin, and integrate G Suite Admin with other applications. n8n has built-in support for a wide range of G Suite Admin features, including creating, updating, deleting, and getting users, and groups. - -On this page, you'll find a list of operations the G Suite Admin node supports and links to more resources. +[G Suite Admin](https://developers.google.com/admin-sdk) helps you administer domain and app resources, create reports, and manage subscriptions and alerts for your G Suite organization. !!! note "Credentials" - Refer to [G Suite Admin 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 [G Suite Admin integrations](https://n8n.io/integrations/google-workspace-admin/){:target="_blank" .external-link} list. - + You can find authentication information for this node [here](/integrations/builtin/credentials/google/). ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.hackernews.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.hackernews.md index 8444779b9..94ba9e811 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.hackernews.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.hackernews.md @@ -1,14 +1,9 @@ # Hacker News -The Hacker News node allows you to automate work in Hacker News, and integrate Hacker News with other applications. n8n has built-in support for a wide range of Hacker News features, including getting articles, and users. - -On this page, you'll find a list of operations the Hacker News node supports and links to more resources. +[Hacker News](https://news.ycombinator.com/) is a social news website focusing on computer science and entrepreneurship. !!! note "Credentials" - This node doesn't require authentication. - -!!! note "Examples and templates" - For usage examples and templates to help you get started, take a look at n8n's [Hacker News integrations](https://n8n.io/integrations/hacker-news/){:target="_blank" .external-link} list. + The Hacker News node does not require authentication. ## Basic Operations diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.halopsa.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.halopsa.md index bcd24ea6a..5f0b092d3 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.halopsa.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.halopsa.md @@ -1,14 +1,9 @@ # HaloPSA -The HaloPSA node allows you to automate work in HaloPSA, and integrate HaloPSA with other applications. n8n has built-in support for a wide range of HaloPSA features, including creating, updating, deleting, and getting clients, sites and tickets. - -On this page, you'll find a list of operations the HaloPSA node supports and links to more resources. +[HaloPSA](https://halopsa.com/) is a intuitive PSA software. Standardise your processes and keep your customers at the center of every conversation. !!! note "Credentials" - Refer to [HaloPSA credentials](https://docs.n8n.io/integrations/builtin/credentials/halopsa/) for guidance on setting up authentication. - -!!! note "Examples and templates" - For usage examples and templates to help you get started, take a look at n8n's [HaloPSA integrations](https://n8n.io/integrations/halopsa/){:target="_blank" .external-link} list. + You can find authentication information for this node [here](/integrations/builtin/credentials/halopsa/). ## Basic Operations From ca29f7e89f18199064c7c82e79c66361666bac65 Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Wed, 22 Feb 2023 14:37:24 +0000 Subject: [PATCH 11/11] add note about google sheets first row --- .../app-nodes/n8n-nodes-base.googlesheets.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets.md index afbbd2717..2c0557b92 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets.md @@ -9,17 +9,16 @@ ## Operations * Document - * Create + * Create * Delete * Sheet within document - * Append: append data to a sheet * Append or update: append a new row, or update the current one if it already exists. - * Clear: clear all data from a sheet - * Create: create a new sheet - * Delete: delete columns and rows from a sheet - * Read rows: read all rows in a sheet. - * Remove: remove a sheet - * Update: update rows in a sheet + * Clear: clear all data from a sheet + * Create: create a new sheet + * Delete: delete columns and rows from a sheet + * Read rows: read all rows in a sheet. + * Remove: remove a sheet + * Update: update rows in a sheet ## Related resources @@ -72,6 +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: