@n8n-as-code/skills 1.8.3-next.8 → 1.9.0-next.135

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,8 @@
1
1
  {
2
- "generatedAt": "2026-04-16T18:38:33.689Z",
2
+ "generatedAt": "2026-04-16T19:19:38.118Z",
3
3
  "version": "1.0.0",
4
4
  "sourceUrl": "https://docs.n8n.io/llms.txt",
5
- "totalPages": 1262,
5
+ "totalPages": 1263,
6
6
  "statistics": {
7
7
  "byCategory": {
8
8
  "other": 510,
@@ -11,7 +11,7 @@
11
11
  "api": 5,
12
12
  "code": 20,
13
13
  "data": 38,
14
- "flow-logic": 7,
14
+ "flow-logic": 8,
15
15
  "hosting": 86,
16
16
  "integrations": 306,
17
17
  "cluster-nodes": 101,
@@ -48,7 +48,7 @@
48
48
  "page-0230",
49
49
  "page-0231",
50
50
  "page-0232",
51
- "page-0234",
51
+ "page-0233",
52
52
  "page-0641",
53
53
  "page-0642",
54
54
  "page-0643",
@@ -446,7 +446,7 @@
446
446
  "page-1035",
447
447
  "page-1036",
448
448
  "page-1037",
449
- "page-1144",
449
+ "page-1145",
450
450
  "page-1146",
451
451
  "page-1147",
452
452
  "page-1148",
@@ -690,7 +690,7 @@
690
690
  },
691
691
  "flow-logic": {
692
692
  "description": "Documentation pages",
693
- "totalPages": 7,
693
+ "totalPages": 8,
694
694
  "pages": [
695
695
  "page-0134",
696
696
  "page-0135",
@@ -698,6 +698,7 @@
698
698
  "page-0137",
699
699
  "page-0138",
700
700
  "page-0139",
701
+ "page-0140",
701
702
  "page-0141"
702
703
  ]
703
704
  },
@@ -797,7 +798,7 @@
797
798
  "description": "Node integrations and app-specific documentation",
798
799
  "totalPages": 306,
799
800
  "pages": [
800
- "page-0233",
801
+ "page-0234",
801
802
  "page-0235",
802
803
  "page-0236",
803
804
  "page-0237",
@@ -1322,7 +1323,7 @@
1322
1323
  "page-1141",
1323
1324
  "page-1142",
1324
1325
  "page-1143",
1325
- "page-1145"
1326
+ "page-1144"
1326
1327
  ]
1327
1328
  },
1328
1329
  "try-it-out": {
@@ -11532,6 +11533,118 @@
11532
11533
  },
11533
11534
  {
11534
11535
  "id": "page-0128",
11536
+ "title": "Root",
11537
+ "url": "https://docs.n8n.io/data/expression-reference/root/index.md",
11538
+ "urlPath": "data/expression-reference/root/index.md",
11539
+ "category": "data",
11540
+ "subcategory": null,
11541
+ "nodeName": null,
11542
+ "nodeType": null,
11543
+ "content": {
11544
+ "markdown": "# Root\n\n## **`$()`**\n\n**Description:** Returns the data of the specified node\n\n**Syntax:** $(nodeName)\n\n**Returns:** NodeData\n\n**Source:** Custom n8n functionality\n\n**Parameters:**\n\n- `nodeName` (String) - The name of the node to retrieve data for\n\n## **`$binary`**\n\n**Description:** Returns any binary input data to the current node, for the current item. Shorthand for `$input.item.binary`.\n\n**Syntax:** **`$binary`**\n\n**Returns:** Array\n\n**Source:** Custom n8n functionality\n\n## **`$execution`**\n\n**Description:** Retrieve or set metadata for the current execution\n\n**Syntax:** **`$execution`**\n\n**Returns:** ExecData\n\n**Source:** Custom n8n functionality\n\n## **`$fromAI()`**\n\n**Description:** Use when a large language model should provide the value of a node parameter. Consider providing a description for better results.\n\n**Syntax:** $fromAI(key, description?, type?, defaultValue?)\n\n**Returns:** any\n\n**Source:** Custom n8n functionality\n\n**Parameters:**\n\n- `key` (String) - The name of the field to fetch. May only contain letters, numbers, underscores and hyphens.\n- `description` (String) - optional - Use to give the model more context on exactly what it should return\n- `type` (String) - optional - The type of the value to return. One of `string`, `number`, `boolean`, `json`, `date`, `datetime`. Defaults to `string`.\n- `defaultValue` (any) - optional - A value to use if the model doesn’t return the key\n\n**Examples:**\n\n```\n// Ask the model to provide a name, and use it here\n$fromAI('name')\n```\n\n```\n// Ask the model to provide the age of the person (as a number with a default value of 18), and use it here\n$fromAI('age', 'The age of the person', 'number', 18)\n```\n\n```\n// Ask the model to provide a boolean signifying whether the person is a student (with default value false), and use it here\n$fromAI('isStudent', 'Is the person a student', 'boolean', false)\n```\n\n## **`$if()`**\n\n**Description:** Returns one of two values depending on the `condition`. Similar to the `?` operator in JavaScript.\n\n**Syntax:** $if(condition, valueIfTrue, valueIfFalse)\n\n**Returns:** any\n\n**Source:** Custom n8n functionality\n\n**Parameters:**\n\n- `condition` (Boolean) - The check to make. Should evaluate to either `true` or `false`\n- `valueIfTrue` (any) - The value to return if the condition is true\n- `valueIfFalse` (any) - The value to return if the condition is false\n\n**Examples:**\n\n```\n// Return \"Good day\" if time is before 5pm, otherwise \"Good evening\"\n$if($now.hour < 17, \"Good day\", \"Good evening\")\n```\n\n```\n// $if() calls can be combined:\n// Return \"Good morning\" if time is before 10am, \"Good day\" it's before 5pm, otherwise \"Good evening\"\n$if($now.hour < 10, \"Good morning\", $if($now.hour < 17, \"Good day\", \"Good evening\"))\n```\n\n## **`$ifEmpty()`**\n\n**Description:** Returns the first parameter if it isn’t empty, otherwise returns the second parameter. The following count as empty: `””`, `[]`, `{}`, `null`, `undefined`\n\n**Syntax:** $ifEmpty(value, valueIfEmpty)\n\n**Returns:** any\n\n**Source:** Custom n8n functionality\n\n**Parameters:**\n\n- `value` (any) - The value to return, provided it isn’t empty\n- `valueIfEmpty` (any) - What to return if `value` is empty\n\n**Examples:**\n\n```\n\"Hi \" + $ifEmpty(name, \"there\") // e.g. \"Hi Nathan\" or \"Hi there\"\n```\n\n## **`$input`**\n\n**Description:** The input data of the current node\n\n**Syntax:** **`$input`**\n\n**Returns:** NodeData\n\n**Source:** Custom n8n functionality\n\n## **`$itemIndex`**\n\n**Description:** The position of the item currently being processed in the list of input items\n\n**Syntax:** **`$itemIndex`**\n\n**Returns:** Number\n\n**Source:** Custom n8n functionality\n\n## **`$jmespath()`**\n\n**Description:** Extracts data from an object (or array of objects) using a [JMESPath](%E2%80%9D/code/cookbook/jmespath/%E2%80%9D) expression. Useful for querying complex, nested objects. Returns `undefined` if the expression is invalid.\n\n**Syntax:** $jmespath(obj, expression)\n\n**Returns:** any\n\n**Source:** Custom n8n functionality\n\n**Parameters:**\n\n- `obj` (Object|Array) - The Object or array of Objects to retrieve data from\n- `expression` (String) - A [JMESPath expression](%E2%80%9Dhttps://jmespath.org/examples.html%E2%80%9D) defining the data to retrieve from the object\n\n**Examples:**\n\n```\ndata = {\n \"people\": [\n {\n \"age\": 20,\n \"other\": \"foo\",\n \"name\": \"Bob\"\n },\n {\n \"age\": 25,\n \"other\": \"bar\",\n \"name\": \"Fred\"\n },\n {\n \"age\": 30,\n \"other\": \"baz\",\n \"name\": \"George\"\n }\n ]\n}\n\n// Get all names, in an array\n{{ $jmespath(data, '[*].name') }} //=> [\"Bob\", \"Fred\", \"George\"]\n\n// Get the names and ages of everyone under 20\n$jmespath(data, '[?age > `20`].[name, age]') //=> [ [\"Fred\",25], [\"George\",30] ]\n\n// Get the name of the first person under 20\n$jmespath($json.people, '[?age > `20`].name | [0]') //=> Fred\n```\n\n```\ndata = {\n \"reservations\": [\n {\n \"id\": 1,\n \"guests\": [\n {\n \"name\": \"Nathan\",\n \"requirements\": {\n \"room\": \"double\",\n \"meal\": \"vegetarian\"\n }\n },\n {\n \"name\": \"Meg\",\n \"requirements\": {\n \"room\": \"single\"\n }\n }\n ]\n },\n {\n \"id\": 2,\n \"guests\": [\n {\n \"name\": \"Lex\",\n \"requirements\": {\n \"room\": \"double\"\n }\n }\n ]\n }\n ]\n }\n\n// Get the names of all the guests in each reservation that require a double room\n$jmespath(data, 'reservations[].guests[?requirements.room==`double`].name')\n```\n\n## **`$json`**\n\n**Description:** Returns the JSON input data to the current node, for the current item. Shorthand for `$input.item.json`. [More info](/data/data-structure/)\n\n**Syntax:** **`$json`**\n\n**Returns:** Object\n\n**Source:** Custom n8n functionality\n\n## **`$max()`**\n\n**Description:** Returns the highest of the given numbers\n\n**Syntax:** $max(num1, num2, …, numN)\n\n**Returns:** Number\n\n**Source:** Custom n8n functionality\n\n**Parameters:**\n\n- `num1` (Number) - The first number to compare\n- `num2` (Number) - The second number to compare\n\n## **`$min()`**\n\n**Description:** Returns the lowest of the given numbers\n\n**Syntax:** $min(num1, num2, …, numN)\n\n**Returns:** Number\n\n**Source:** Custom n8n functionality\n\n**Parameters:**\n\n- `num1` (Number) - The first number to compare\n- `num2` (Number) - The second number to compare\n\n## **`$nodeVersion`**\n\n**Description:** The version of the current node (as displayed at the bottom of the nodes’s settings pane)\n\n**Syntax:** **`$nodeVersion`**\n\n**Returns:** String\n\n**Source:** Custom n8n functionality\n\n## **`$now`**\n\n**Description:** A DateTime representing the current moment.\n\nUses the workflow’s time zone (which can be changed in the workflow settings).\n\n**Syntax:** **`$now`**\n\n**Returns:** DateTime\n\n**Source:** Custom n8n functionality\n\n## **`$pageCount`**\n\n**Description:** The number of results pages the node has fetched. Only available in the ‘HTTP Request’ node.\n\n**Syntax:** **`$pageCount`**\n\n**Returns:** Number\n\n**Source:** Custom n8n functionality\n\n## **`$parameter`**\n\n**Description:** The configuration settings of the current node. These are the parameters you fill out within the node’s UI (e.g. its operation).\n\n**Syntax:** **`$parameter`**\n\n**Returns:** NodeParams\n\n**Source:** Custom n8n functionality\n\n## **`$prevNode`**\n\n**Description:** Information about the node that the current input came from.\n\nWhen in a ‘Merge’ node, always uses the first input connector.\n\n**Syntax:** **`$prevNode`**\n\n**Returns:** PrevNodeData\n\n**Source:** Custom n8n functionality\n\n## **`$request`**\n\n**Description:** The request object sent during the last run of the node. Only available in the ‘HTTP Request’ node.\n\n**Syntax:** **`$request`**\n\n**Returns:** Object\n\n**Source:** Custom n8n functionality\n\n## **`$response`**\n\n**Description:** The response returned by the last HTTP call. Only available in the ‘HTTP Request’ node.\n\n**Syntax:** **`$response`**\n\n**Returns:** HTTPResponse\n\n**Source:** Custom n8n functionality\n\n## **`$runIndex`**\n\n**Description:** The index of the current run of the current node execution. Starts at 0.\n\n**Syntax:** **`$runIndex`**\n\n**Returns:** Number\n\n**Source:** Custom n8n functionality\n\n## **`$secrets`**\n\n**Description:** The secrets from an [external secrets vault](/external-secrets/), if configured. Secret values are never displayed to the user. Only available in credential fields.\n\n**Syntax:** **`$secrets`**\n\n**Returns:** Object\n\n**Source:** Custom n8n functionality\n\n## **`$today`**\n\n**Description:** A DateTime representing midnight at the start of the current day.\n\nUses the instance’s time zone (unless overridden in the workflow’s settings).\n\n**Syntax:** **`$today`**\n\n**Returns:** DateTime\n\n**Source:** Custom n8n functionality\n\n## **`$vars`**\n\n**Description:** The [variables](/code/variables/) available to the workflow\n\n**Syntax:** **`$vars`**\n\n**Returns:** Object\n\n**Source:** Custom n8n functionality\n\n## **`$workflow`**\n\n**Description:** Information about the current workflow\n\n**Syntax:** **`$workflow`**\n\n**Returns:** WorkflowData\n\n**Source:** Custom n8n functionality\n",
11545
+ "excerpt": "# Root ## **`$()`** **Description:** Returns the data of the specified node **Syntax:** $(nodeName) **Returns:** NodeData **Source:** Custom n8n functionality **Parameters:** - `nodeName` (String) - The name of the node to retrieve data for ## **`$binary`** **Description:** Returns any binary input data to the current node, for the current item. Shorthand for `$input.item.binary`. **Syntax:** **`$binary`** **Returns:** Array **Source:** Custom n8n functionality ## **`$execution`**...",
11546
+ "sections": [
11547
+ {
11548
+ "title": "Root",
11549
+ "level": 1,
11550
+ "content": ""
11551
+ }
11552
+ ]
11553
+ },
11554
+ "metadata": {
11555
+ "keywords": [
11556
+ "root",
11557
+ "**`$()`**",
11558
+ "**`$binary`**",
11559
+ "**`$execution`**",
11560
+ "**`$fromai()`**",
11561
+ "**`$if()`**",
11562
+ "**`$ifempty()`**",
11563
+ "**`$input`**",
11564
+ "**`$itemindex`**",
11565
+ "**`$jmespath()`**",
11566
+ "**`$json`**",
11567
+ "**`$max()`**",
11568
+ "**`$min()`**",
11569
+ "**`$nodeversion`**",
11570
+ "**`$now`**",
11571
+ "**`$pagecount`**",
11572
+ "**`$parameter`**",
11573
+ "**`$prevnode`**",
11574
+ "**`$request`**",
11575
+ "**`$response`**",
11576
+ "**`$runindex`**",
11577
+ "**`$secrets`**",
11578
+ "**`$today`**",
11579
+ "**`$vars`**",
11580
+ "**`$workflow`**"
11581
+ ],
11582
+ "useCases": [],
11583
+ "operations": [],
11584
+ "codeExamples": 8,
11585
+ "complexity": "intermediate",
11586
+ "readingTime": "6 min",
11587
+ "contentLength": 9178,
11588
+ "relatedPages": []
11589
+ },
11590
+ "searchIndex": {
11591
+ "fullText": "root # root\n\n## **`$()`**\n\n**description:** returns the data of the specified node\n\n**syntax:** $(nodename)\n\n**returns:** nodedata\n\n**source:** custom n8n functionality\n\n**parameters:**\n\n- `nodename` (string) - the name of the node to retrieve data for\n\n## **`$binary`**\n\n**description:** returns any binary input data to the current node, for the current item. shorthand for `$input.item.binary`.\n\n**syntax:** **`$binary`**\n\n**returns:** array\n\n**source:** custom n8n functionality\n\n## **`$execution`**\n\n**description:** retrieve or set metadata for the current execution\n\n**syntax:** **`$execution`**\n\n**returns:** execdata\n\n**source:** custom n8n functionality\n\n## **`$fromai()`**\n\n**description:** use when a large language model should provide the value of a node parameter. consider providing a description for better results.\n\n**syntax:** $fromai(key, description?, type?, defaultvalue?)\n\n**returns:** any\n\n**source:** custom n8n functionality\n\n**parameters:**\n\n- `key` (string) - the name of the field to fetch. may only contain letters, numbers, underscores and hyphens.\n- `description` (string) - optional - use to give the model more context on exactly what it should return\n- `type` (string) - optional - the type of the value to return. one of `string`, `number`, `boolean`, `json`, `date`, `datetime`. defaults to `string`.\n- `defaultvalue` (any) - optional - a value to use if the model doesn’t return the key\n\n**examples:**\n\n```\n// ask the model to provide a name, and use it here\n$fromai('name')\n```\n\n```\n// ask the model to provide the age of the person (as a number with a default value of 18), and use it here\n$fromai('age', 'the age of the person', 'number', 18)\n```\n\n```\n// ask the model to provide a boolean signifying whether the person is a student (with default value false), and use it here\n$fromai('isstudent', 'is the person a student', 'boolean', false)\n```\n\n## **`$if()`**\n\n**description:** returns one of two values depending on the `condition`. similar to the `?` operator in javascript.\n\n**syntax:** $if(condition, valueiftrue, valueiffalse)\n\n**returns:** any\n\n**source:** custom n8n functionality\n\n**parameters:**\n\n- `condition` (boolean) - the check to make. should evaluate to either `true` or `false`\n- `valueiftrue` (any) - the value to return if the condition is true\n- `valueiffalse` (any) - the value to return if the condition is false\n\n**examples:**\n\n```\n// return \"good day\" if time is before 5pm, otherwise \"good evening\"\n$if($now.hour < 17, \"good day\", \"good evening\")\n```\n\n```\n// $if() calls can be combined:\n// return \"good morning\" if time is before 10am, \"good day\" it's before 5pm, otherwise \"good evening\"\n$if($now.hour < 10, \"good morning\", $if($now.hour < 17, \"good day\", \"good evening\"))\n```\n\n## **`$ifempty()`**\n\n**description:** returns the first parameter if it isn’t empty, otherwise returns the second parameter. the following count as empty: `””`, `[]`, `{}`, `null`, `undefined`\n\n**syntax:** $ifempty(value, valueifempty)\n\n**returns:** any\n\n**source:** custom n8n functionality\n\n**parameters:**\n\n- `value` (any) - the value to return, provided it isn’t empty\n- `valueifempty` (any) - what to return if `value` is empty\n\n**examples:**\n\n```\n\"hi \" + $ifempty(name, \"there\") // e.g. \"hi nathan\" or \"hi there\"\n```\n\n## **`$input`**\n\n**description:** the input data of the current node\n\n**syntax:** **`$input`**\n\n**returns:** nodedata\n\n**source:** custom n8n functionality\n\n## **`$itemindex`**\n\n**description:** the position of the item currently being processed in the list of input items\n\n**syntax:** **`$itemindex`**\n\n**returns:** number\n\n**source:** custom n8n functionality\n\n## **`$jmespath()`**\n\n**description:** extracts data from an object (or array of objects) using a [jmespath](%e2%80%9d/code/cookbook/jmespath/%e2%80%9d) expression. useful for querying complex, nested objects. returns `undefined` if the expression is invalid.\n\n**syntax:** $jmespath(obj, expression)\n\n**returns:** any\n\n**source:** custom n8n functionality\n\n**parameters:**\n\n- `obj` (object|array) - the object or array of objects to retrieve data from\n- `expression` (string) - a [jmespath expression](%e2%80%9dhttps://jmespath.org/examples.html%e2%80%9d) defining the data to retrieve from the object\n\n**examples:**\n\n```\ndata = {\n \"people\": [\n {\n \"age\": 20,\n \"other\": \"foo\",\n \"name\": \"bob\"\n },\n {\n \"age\": 25,\n \"other\": \"bar\",\n \"name\": \"fred\"\n },\n {\n \"age\": 30,\n \"other\": \"baz\",\n \"name\": \"george\"\n }\n ]\n}\n\n// get all names, in an array\n{{ $jmespath(data, '[*].name') }} //=> [\"bob\", \"fred\", \"george\"]\n\n// get the names and ages of everyone under 20\n$jmespath(data, '[?age > `20`].[name, age]') //=> [ [\"fred\",25], [\"george\",30] ]\n\n// get the name of the first person under 20\n$jmespath($json.people, '[?age > `20`].name | [0]') //=> fred\n```\n\n```\ndata = {\n \"reservations\": [\n {\n \"id\": 1,\n \"guests\": [\n {\n \"name\": \"nathan\",\n \"requirements\": {\n \"room\": \"double\",\n \"meal\": \"vegetarian\"\n }\n },\n {\n \"name\": \"meg\",\n \"requirements\": {\n \"room\": \"single\"\n }\n }\n ]\n },\n {\n \"id\": 2,\n \"guests\": [\n {\n \"name\": \"lex\",\n \"requirements\": {\n \"room\": \"double\"\n }\n }\n ]\n }\n ]\n }\n\n// get the names of all the guests in each reservation that require a double room\n$jmespath(data, 'reservations[].guests[?requirements.room==`double`].name')\n```\n\n## **`$json`**\n\n**description:** returns the json input data to the current node, for the current item. shorthand for `$input.item.json`. [more info](/data/data-structure/)\n\n**syntax:** **`$json`**\n\n**returns:** object\n\n**source:** custom n8n functionality\n\n## **`$max()`**\n\n**description:** returns the highest of the given numbers\n\n**syntax:** $max(num1, num2, …, numn)\n\n**returns:** number\n\n**source:** custom n8n functionality\n\n**parameters:**\n\n- `num1` (number) - the first number to compare\n- `num2` (number) - the second number to compare\n\n## **`$min()`**\n\n**description:** returns the lowest of the given numbers\n\n**syntax:** $min(num1, num2, …, numn)\n\n**returns:** number\n\n**source:** custom n8n functionality\n\n**parameters:**\n\n- `num1` (number) - the first number to compare\n- `num2` (number) - the second number to compare\n\n## **`$nodeversion`**\n\n**description:** the version of the current node (as displayed at the bottom of the nodes’s settings pane)\n\n**syntax:** **`$nodeversion`**\n\n**returns:** string\n\n**source:** custom n8n functionality\n\n## **`$now`**\n\n**description:** a datetime representing the current moment.\n\nuses the workflow’s time zone (which can be changed in the workflow settings).\n\n**syntax:** **`$now`**\n\n**returns:** datetime\n\n**source:** custom n8n functionality\n\n## **`$pagecount`**\n\n**description:** the number of results pages the node has fetched. only available in the ‘http request’ node.\n\n**syntax:** **`$pagecount`**\n\n**returns:** number\n\n**source:** custom n8n functionality\n\n## **`$parameter`**\n\n**description:** the configuration settings of the current node. these are the parameters you fill out within the node’s ui (e.g. its operation).\n\n**syntax:** **`$parameter`**\n\n**returns:** nodeparams\n\n**source:** custom n8n functionality\n\n## **`$prevnode`**\n\n**description:** information about the node that the current input came from.\n\nwhen in a ‘merge’ node, always uses the first input connector.\n\n**syntax:** **`$prevnode`**\n\n**returns:** prevnodedata\n\n**source:** custom n8n functionality\n\n## **`$request`**\n\n**description:** the request object sent during the last run of the node. only available in the ‘http request’ node.\n\n**syntax:** **`$request`**\n\n**returns:** object\n\n**source:** custom n8n functionality\n\n## **`$response`**\n\n**description:** the response returned by the last http call. only available in the ‘http request’ node.\n\n**syntax:** **`$response`**\n\n**returns:** httpresponse\n\n**source:** custom n8n functionality\n\n## **`$runindex`**\n\n**description:** the index of the current run of the current node execution. starts at 0.\n\n**syntax:** **`$runindex`**\n\n**returns:** number\n\n**source:** custom n8n functionality\n\n## **`$secrets`**\n\n**description:** the secrets from an [external secrets vault](/external-secrets/), if configured. secret values are never displayed to the user. only available in credential fields.\n\n**syntax:** **`$secrets`**\n\n**returns:** object\n\n**source:** custom n8n functionality\n\n## **`$today`**\n\n**description:** a datetime representing midnight at the start of the current day.\n\nuses the instance’s time zone (unless overridden in the workflow’s settings).\n\n**syntax:** **`$today`**\n\n**returns:** datetime\n\n**source:** custom n8n functionality\n\n## **`$vars`**\n\n**description:** the [variables](/code/variables/) available to the workflow\n\n**syntax:** **`$vars`**\n\n**returns:** object\n\n**source:** custom n8n functionality\n\n## **`$workflow`**\n\n**description:** information about the current workflow\n\n**syntax:** **`$workflow`**\n\n**returns:** workflowdata\n\n**source:** custom n8n functionality\n root",
11592
+ "importantTerms": [
11593
+ "returns",
11594
+ "description",
11595
+ "syntax",
11596
+ "source",
11597
+ "custom",
11598
+ "functionality",
11599
+ "node",
11600
+ "number",
11601
+ "name",
11602
+ "data",
11603
+ "current",
11604
+ "value",
11605
+ "input",
11606
+ "good",
11607
+ "jmespath",
11608
+ "return",
11609
+ "object",
11610
+ "parameters",
11611
+ "string",
11612
+ "workflow",
11613
+ "model",
11614
+ "json",
11615
+ "request",
11616
+ "item",
11617
+ "array",
11618
+ "fromai",
11619
+ "parameter",
11620
+ "only",
11621
+ "datetime",
11622
+ "examples",
11623
+ "person",
11624
+ "condition",
11625
+ "first",
11626
+ "from",
11627
+ "expression",
11628
+ "room",
11629
+ "available",
11630
+ "secrets",
11631
+ "retrieve",
11632
+ "binary",
11633
+ "execution",
11634
+ "provide",
11635
+ "boolean",
11636
+ "false",
11637
+ "time",
11638
+ "evening",
11639
+ "empty",
11640
+ "fred",
11641
+ "guests",
11642
+ "requirements"
11643
+ ]
11644
+ }
11645
+ },
11646
+ {
11647
+ "id": "page-0129",
11535
11648
  "title": "String",
11536
11649
  "url": "https://docs.n8n.io/data/expression-reference/string/index.md",
11537
11650
  "urlPath": "data/expression-reference/string/index.md",
@@ -11661,118 +11774,6 @@
11661
11774
  ]
11662
11775
  }
11663
11776
  },
11664
- {
11665
- "id": "page-0129",
11666
- "title": "Root",
11667
- "url": "https://docs.n8n.io/data/expression-reference/root/index.md",
11668
- "urlPath": "data/expression-reference/root/index.md",
11669
- "category": "data",
11670
- "subcategory": null,
11671
- "nodeName": null,
11672
- "nodeType": null,
11673
- "content": {
11674
- "markdown": "# Root\n\n## **`$()`**\n\n**Description:** Returns the data of the specified node\n\n**Syntax:** $(nodeName)\n\n**Returns:** NodeData\n\n**Source:** Custom n8n functionality\n\n**Parameters:**\n\n- `nodeName` (String) - The name of the node to retrieve data for\n\n## **`$binary`**\n\n**Description:** Returns any binary input data to the current node, for the current item. Shorthand for `$input.item.binary`.\n\n**Syntax:** **`$binary`**\n\n**Returns:** Array\n\n**Source:** Custom n8n functionality\n\n## **`$execution`**\n\n**Description:** Retrieve or set metadata for the current execution\n\n**Syntax:** **`$execution`**\n\n**Returns:** ExecData\n\n**Source:** Custom n8n functionality\n\n## **`$fromAI()`**\n\n**Description:** Use when a large language model should provide the value of a node parameter. Consider providing a description for better results.\n\n**Syntax:** $fromAI(key, description?, type?, defaultValue?)\n\n**Returns:** any\n\n**Source:** Custom n8n functionality\n\n**Parameters:**\n\n- `key` (String) - The name of the field to fetch. May only contain letters, numbers, underscores and hyphens.\n- `description` (String) - optional - Use to give the model more context on exactly what it should return\n- `type` (String) - optional - The type of the value to return. One of `string`, `number`, `boolean`, `json`, `date`, `datetime`. Defaults to `string`.\n- `defaultValue` (any) - optional - A value to use if the model doesn’t return the key\n\n**Examples:**\n\n```\n// Ask the model to provide a name, and use it here\n$fromAI('name')\n```\n\n```\n// Ask the model to provide the age of the person (as a number with a default value of 18), and use it here\n$fromAI('age', 'The age of the person', 'number', 18)\n```\n\n```\n// Ask the model to provide a boolean signifying whether the person is a student (with default value false), and use it here\n$fromAI('isStudent', 'Is the person a student', 'boolean', false)\n```\n\n## **`$if()`**\n\n**Description:** Returns one of two values depending on the `condition`. Similar to the `?` operator in JavaScript.\n\n**Syntax:** $if(condition, valueIfTrue, valueIfFalse)\n\n**Returns:** any\n\n**Source:** Custom n8n functionality\n\n**Parameters:**\n\n- `condition` (Boolean) - The check to make. Should evaluate to either `true` or `false`\n- `valueIfTrue` (any) - The value to return if the condition is true\n- `valueIfFalse` (any) - The value to return if the condition is false\n\n**Examples:**\n\n```\n// Return \"Good day\" if time is before 5pm, otherwise \"Good evening\"\n$if($now.hour < 17, \"Good day\", \"Good evening\")\n```\n\n```\n// $if() calls can be combined:\n// Return \"Good morning\" if time is before 10am, \"Good day\" it's before 5pm, otherwise \"Good evening\"\n$if($now.hour < 10, \"Good morning\", $if($now.hour < 17, \"Good day\", \"Good evening\"))\n```\n\n## **`$ifEmpty()`**\n\n**Description:** Returns the first parameter if it isn’t empty, otherwise returns the second parameter. The following count as empty: `””`, `[]`, `{}`, `null`, `undefined`\n\n**Syntax:** $ifEmpty(value, valueIfEmpty)\n\n**Returns:** any\n\n**Source:** Custom n8n functionality\n\n**Parameters:**\n\n- `value` (any) - The value to return, provided it isn’t empty\n- `valueIfEmpty` (any) - What to return if `value` is empty\n\n**Examples:**\n\n```\n\"Hi \" + $ifEmpty(name, \"there\") // e.g. \"Hi Nathan\" or \"Hi there\"\n```\n\n## **`$input`**\n\n**Description:** The input data of the current node\n\n**Syntax:** **`$input`**\n\n**Returns:** NodeData\n\n**Source:** Custom n8n functionality\n\n## **`$itemIndex`**\n\n**Description:** The position of the item currently being processed in the list of input items\n\n**Syntax:** **`$itemIndex`**\n\n**Returns:** Number\n\n**Source:** Custom n8n functionality\n\n## **`$jmespath()`**\n\n**Description:** Extracts data from an object (or array of objects) using a [JMESPath](%E2%80%9D/code/cookbook/jmespath/%E2%80%9D) expression. Useful for querying complex, nested objects. Returns `undefined` if the expression is invalid.\n\n**Syntax:** $jmespath(obj, expression)\n\n**Returns:** any\n\n**Source:** Custom n8n functionality\n\n**Parameters:**\n\n- `obj` (Object|Array) - The Object or array of Objects to retrieve data from\n- `expression` (String) - A [JMESPath expression](%E2%80%9Dhttps://jmespath.org/examples.html%E2%80%9D) defining the data to retrieve from the object\n\n**Examples:**\n\n```\ndata = {\n \"people\": [\n {\n \"age\": 20,\n \"other\": \"foo\",\n \"name\": \"Bob\"\n },\n {\n \"age\": 25,\n \"other\": \"bar\",\n \"name\": \"Fred\"\n },\n {\n \"age\": 30,\n \"other\": \"baz\",\n \"name\": \"George\"\n }\n ]\n}\n\n// Get all names, in an array\n{{ $jmespath(data, '[*].name') }} //=> [\"Bob\", \"Fred\", \"George\"]\n\n// Get the names and ages of everyone under 20\n$jmespath(data, '[?age > `20`].[name, age]') //=> [ [\"Fred\",25], [\"George\",30] ]\n\n// Get the name of the first person under 20\n$jmespath($json.people, '[?age > `20`].name | [0]') //=> Fred\n```\n\n```\ndata = {\n \"reservations\": [\n {\n \"id\": 1,\n \"guests\": [\n {\n \"name\": \"Nathan\",\n \"requirements\": {\n \"room\": \"double\",\n \"meal\": \"vegetarian\"\n }\n },\n {\n \"name\": \"Meg\",\n \"requirements\": {\n \"room\": \"single\"\n }\n }\n ]\n },\n {\n \"id\": 2,\n \"guests\": [\n {\n \"name\": \"Lex\",\n \"requirements\": {\n \"room\": \"double\"\n }\n }\n ]\n }\n ]\n }\n\n// Get the names of all the guests in each reservation that require a double room\n$jmespath(data, 'reservations[].guests[?requirements.room==`double`].name')\n```\n\n## **`$json`**\n\n**Description:** Returns the JSON input data to the current node, for the current item. Shorthand for `$input.item.json`. [More info](/data/data-structure/)\n\n**Syntax:** **`$json`**\n\n**Returns:** Object\n\n**Source:** Custom n8n functionality\n\n## **`$max()`**\n\n**Description:** Returns the highest of the given numbers\n\n**Syntax:** $max(num1, num2, …, numN)\n\n**Returns:** Number\n\n**Source:** Custom n8n functionality\n\n**Parameters:**\n\n- `num1` (Number) - The first number to compare\n- `num2` (Number) - The second number to compare\n\n## **`$min()`**\n\n**Description:** Returns the lowest of the given numbers\n\n**Syntax:** $min(num1, num2, …, numN)\n\n**Returns:** Number\n\n**Source:** Custom n8n functionality\n\n**Parameters:**\n\n- `num1` (Number) - The first number to compare\n- `num2` (Number) - The second number to compare\n\n## **`$nodeVersion`**\n\n**Description:** The version of the current node (as displayed at the bottom of the nodes’s settings pane)\n\n**Syntax:** **`$nodeVersion`**\n\n**Returns:** String\n\n**Source:** Custom n8n functionality\n\n## **`$now`**\n\n**Description:** A DateTime representing the current moment.\n\nUses the workflow’s time zone (which can be changed in the workflow settings).\n\n**Syntax:** **`$now`**\n\n**Returns:** DateTime\n\n**Source:** Custom n8n functionality\n\n## **`$pageCount`**\n\n**Description:** The number of results pages the node has fetched. Only available in the ‘HTTP Request’ node.\n\n**Syntax:** **`$pageCount`**\n\n**Returns:** Number\n\n**Source:** Custom n8n functionality\n\n## **`$parameter`**\n\n**Description:** The configuration settings of the current node. These are the parameters you fill out within the node’s UI (e.g. its operation).\n\n**Syntax:** **`$parameter`**\n\n**Returns:** NodeParams\n\n**Source:** Custom n8n functionality\n\n## **`$prevNode`**\n\n**Description:** Information about the node that the current input came from.\n\nWhen in a ‘Merge’ node, always uses the first input connector.\n\n**Syntax:** **`$prevNode`**\n\n**Returns:** PrevNodeData\n\n**Source:** Custom n8n functionality\n\n## **`$request`**\n\n**Description:** The request object sent during the last run of the node. Only available in the ‘HTTP Request’ node.\n\n**Syntax:** **`$request`**\n\n**Returns:** Object\n\n**Source:** Custom n8n functionality\n\n## **`$response`**\n\n**Description:** The response returned by the last HTTP call. Only available in the ‘HTTP Request’ node.\n\n**Syntax:** **`$response`**\n\n**Returns:** HTTPResponse\n\n**Source:** Custom n8n functionality\n\n## **`$runIndex`**\n\n**Description:** The index of the current run of the current node execution. Starts at 0.\n\n**Syntax:** **`$runIndex`**\n\n**Returns:** Number\n\n**Source:** Custom n8n functionality\n\n## **`$secrets`**\n\n**Description:** The secrets from an [external secrets vault](/external-secrets/), if configured. Secret values are never displayed to the user. Only available in credential fields.\n\n**Syntax:** **`$secrets`**\n\n**Returns:** Object\n\n**Source:** Custom n8n functionality\n\n## **`$today`**\n\n**Description:** A DateTime representing midnight at the start of the current day.\n\nUses the instance’s time zone (unless overridden in the workflow’s settings).\n\n**Syntax:** **`$today`**\n\n**Returns:** DateTime\n\n**Source:** Custom n8n functionality\n\n## **`$vars`**\n\n**Description:** The [variables](/code/variables/) available to the workflow\n\n**Syntax:** **`$vars`**\n\n**Returns:** Object\n\n**Source:** Custom n8n functionality\n\n## **`$workflow`**\n\n**Description:** Information about the current workflow\n\n**Syntax:** **`$workflow`**\n\n**Returns:** WorkflowData\n\n**Source:** Custom n8n functionality\n",
11675
- "excerpt": "# Root ## **`$()`** **Description:** Returns the data of the specified node **Syntax:** $(nodeName) **Returns:** NodeData **Source:** Custom n8n functionality **Parameters:** - `nodeName` (String) - The name of the node to retrieve data for ## **`$binary`** **Description:** Returns any binary input data to the current node, for the current item. Shorthand for `$input.item.binary`. **Syntax:** **`$binary`** **Returns:** Array **Source:** Custom n8n functionality ## **`$execution`**...",
11676
- "sections": [
11677
- {
11678
- "title": "Root",
11679
- "level": 1,
11680
- "content": ""
11681
- }
11682
- ]
11683
- },
11684
- "metadata": {
11685
- "keywords": [
11686
- "root",
11687
- "**`$()`**",
11688
- "**`$binary`**",
11689
- "**`$execution`**",
11690
- "**`$fromai()`**",
11691
- "**`$if()`**",
11692
- "**`$ifempty()`**",
11693
- "**`$input`**",
11694
- "**`$itemindex`**",
11695
- "**`$jmespath()`**",
11696
- "**`$json`**",
11697
- "**`$max()`**",
11698
- "**`$min()`**",
11699
- "**`$nodeversion`**",
11700
- "**`$now`**",
11701
- "**`$pagecount`**",
11702
- "**`$parameter`**",
11703
- "**`$prevnode`**",
11704
- "**`$request`**",
11705
- "**`$response`**",
11706
- "**`$runindex`**",
11707
- "**`$secrets`**",
11708
- "**`$today`**",
11709
- "**`$vars`**",
11710
- "**`$workflow`**"
11711
- ],
11712
- "useCases": [],
11713
- "operations": [],
11714
- "codeExamples": 8,
11715
- "complexity": "intermediate",
11716
- "readingTime": "6 min",
11717
- "contentLength": 9178,
11718
- "relatedPages": []
11719
- },
11720
- "searchIndex": {
11721
- "fullText": "root # root\n\n## **`$()`**\n\n**description:** returns the data of the specified node\n\n**syntax:** $(nodename)\n\n**returns:** nodedata\n\n**source:** custom n8n functionality\n\n**parameters:**\n\n- `nodename` (string) - the name of the node to retrieve data for\n\n## **`$binary`**\n\n**description:** returns any binary input data to the current node, for the current item. shorthand for `$input.item.binary`.\n\n**syntax:** **`$binary`**\n\n**returns:** array\n\n**source:** custom n8n functionality\n\n## **`$execution`**\n\n**description:** retrieve or set metadata for the current execution\n\n**syntax:** **`$execution`**\n\n**returns:** execdata\n\n**source:** custom n8n functionality\n\n## **`$fromai()`**\n\n**description:** use when a large language model should provide the value of a node parameter. consider providing a description for better results.\n\n**syntax:** $fromai(key, description?, type?, defaultvalue?)\n\n**returns:** any\n\n**source:** custom n8n functionality\n\n**parameters:**\n\n- `key` (string) - the name of the field to fetch. may only contain letters, numbers, underscores and hyphens.\n- `description` (string) - optional - use to give the model more context on exactly what it should return\n- `type` (string) - optional - the type of the value to return. one of `string`, `number`, `boolean`, `json`, `date`, `datetime`. defaults to `string`.\n- `defaultvalue` (any) - optional - a value to use if the model doesn’t return the key\n\n**examples:**\n\n```\n// ask the model to provide a name, and use it here\n$fromai('name')\n```\n\n```\n// ask the model to provide the age of the person (as a number with a default value of 18), and use it here\n$fromai('age', 'the age of the person', 'number', 18)\n```\n\n```\n// ask the model to provide a boolean signifying whether the person is a student (with default value false), and use it here\n$fromai('isstudent', 'is the person a student', 'boolean', false)\n```\n\n## **`$if()`**\n\n**description:** returns one of two values depending on the `condition`. similar to the `?` operator in javascript.\n\n**syntax:** $if(condition, valueiftrue, valueiffalse)\n\n**returns:** any\n\n**source:** custom n8n functionality\n\n**parameters:**\n\n- `condition` (boolean) - the check to make. should evaluate to either `true` or `false`\n- `valueiftrue` (any) - the value to return if the condition is true\n- `valueiffalse` (any) - the value to return if the condition is false\n\n**examples:**\n\n```\n// return \"good day\" if time is before 5pm, otherwise \"good evening\"\n$if($now.hour < 17, \"good day\", \"good evening\")\n```\n\n```\n// $if() calls can be combined:\n// return \"good morning\" if time is before 10am, \"good day\" it's before 5pm, otherwise \"good evening\"\n$if($now.hour < 10, \"good morning\", $if($now.hour < 17, \"good day\", \"good evening\"))\n```\n\n## **`$ifempty()`**\n\n**description:** returns the first parameter if it isn’t empty, otherwise returns the second parameter. the following count as empty: `””`, `[]`, `{}`, `null`, `undefined`\n\n**syntax:** $ifempty(value, valueifempty)\n\n**returns:** any\n\n**source:** custom n8n functionality\n\n**parameters:**\n\n- `value` (any) - the value to return, provided it isn’t empty\n- `valueifempty` (any) - what to return if `value` is empty\n\n**examples:**\n\n```\n\"hi \" + $ifempty(name, \"there\") // e.g. \"hi nathan\" or \"hi there\"\n```\n\n## **`$input`**\n\n**description:** the input data of the current node\n\n**syntax:** **`$input`**\n\n**returns:** nodedata\n\n**source:** custom n8n functionality\n\n## **`$itemindex`**\n\n**description:** the position of the item currently being processed in the list of input items\n\n**syntax:** **`$itemindex`**\n\n**returns:** number\n\n**source:** custom n8n functionality\n\n## **`$jmespath()`**\n\n**description:** extracts data from an object (or array of objects) using a [jmespath](%e2%80%9d/code/cookbook/jmespath/%e2%80%9d) expression. useful for querying complex, nested objects. returns `undefined` if the expression is invalid.\n\n**syntax:** $jmespath(obj, expression)\n\n**returns:** any\n\n**source:** custom n8n functionality\n\n**parameters:**\n\n- `obj` (object|array) - the object or array of objects to retrieve data from\n- `expression` (string) - a [jmespath expression](%e2%80%9dhttps://jmespath.org/examples.html%e2%80%9d) defining the data to retrieve from the object\n\n**examples:**\n\n```\ndata = {\n \"people\": [\n {\n \"age\": 20,\n \"other\": \"foo\",\n \"name\": \"bob\"\n },\n {\n \"age\": 25,\n \"other\": \"bar\",\n \"name\": \"fred\"\n },\n {\n \"age\": 30,\n \"other\": \"baz\",\n \"name\": \"george\"\n }\n ]\n}\n\n// get all names, in an array\n{{ $jmespath(data, '[*].name') }} //=> [\"bob\", \"fred\", \"george\"]\n\n// get the names and ages of everyone under 20\n$jmespath(data, '[?age > `20`].[name, age]') //=> [ [\"fred\",25], [\"george\",30] ]\n\n// get the name of the first person under 20\n$jmespath($json.people, '[?age > `20`].name | [0]') //=> fred\n```\n\n```\ndata = {\n \"reservations\": [\n {\n \"id\": 1,\n \"guests\": [\n {\n \"name\": \"nathan\",\n \"requirements\": {\n \"room\": \"double\",\n \"meal\": \"vegetarian\"\n }\n },\n {\n \"name\": \"meg\",\n \"requirements\": {\n \"room\": \"single\"\n }\n }\n ]\n },\n {\n \"id\": 2,\n \"guests\": [\n {\n \"name\": \"lex\",\n \"requirements\": {\n \"room\": \"double\"\n }\n }\n ]\n }\n ]\n }\n\n// get the names of all the guests in each reservation that require a double room\n$jmespath(data, 'reservations[].guests[?requirements.room==`double`].name')\n```\n\n## **`$json`**\n\n**description:** returns the json input data to the current node, for the current item. shorthand for `$input.item.json`. [more info](/data/data-structure/)\n\n**syntax:** **`$json`**\n\n**returns:** object\n\n**source:** custom n8n functionality\n\n## **`$max()`**\n\n**description:** returns the highest of the given numbers\n\n**syntax:** $max(num1, num2, …, numn)\n\n**returns:** number\n\n**source:** custom n8n functionality\n\n**parameters:**\n\n- `num1` (number) - the first number to compare\n- `num2` (number) - the second number to compare\n\n## **`$min()`**\n\n**description:** returns the lowest of the given numbers\n\n**syntax:** $min(num1, num2, …, numn)\n\n**returns:** number\n\n**source:** custom n8n functionality\n\n**parameters:**\n\n- `num1` (number) - the first number to compare\n- `num2` (number) - the second number to compare\n\n## **`$nodeversion`**\n\n**description:** the version of the current node (as displayed at the bottom of the nodes’s settings pane)\n\n**syntax:** **`$nodeversion`**\n\n**returns:** string\n\n**source:** custom n8n functionality\n\n## **`$now`**\n\n**description:** a datetime representing the current moment.\n\nuses the workflow’s time zone (which can be changed in the workflow settings).\n\n**syntax:** **`$now`**\n\n**returns:** datetime\n\n**source:** custom n8n functionality\n\n## **`$pagecount`**\n\n**description:** the number of results pages the node has fetched. only available in the ‘http request’ node.\n\n**syntax:** **`$pagecount`**\n\n**returns:** number\n\n**source:** custom n8n functionality\n\n## **`$parameter`**\n\n**description:** the configuration settings of the current node. these are the parameters you fill out within the node’s ui (e.g. its operation).\n\n**syntax:** **`$parameter`**\n\n**returns:** nodeparams\n\n**source:** custom n8n functionality\n\n## **`$prevnode`**\n\n**description:** information about the node that the current input came from.\n\nwhen in a ‘merge’ node, always uses the first input connector.\n\n**syntax:** **`$prevnode`**\n\n**returns:** prevnodedata\n\n**source:** custom n8n functionality\n\n## **`$request`**\n\n**description:** the request object sent during the last run of the node. only available in the ‘http request’ node.\n\n**syntax:** **`$request`**\n\n**returns:** object\n\n**source:** custom n8n functionality\n\n## **`$response`**\n\n**description:** the response returned by the last http call. only available in the ‘http request’ node.\n\n**syntax:** **`$response`**\n\n**returns:** httpresponse\n\n**source:** custom n8n functionality\n\n## **`$runindex`**\n\n**description:** the index of the current run of the current node execution. starts at 0.\n\n**syntax:** **`$runindex`**\n\n**returns:** number\n\n**source:** custom n8n functionality\n\n## **`$secrets`**\n\n**description:** the secrets from an [external secrets vault](/external-secrets/), if configured. secret values are never displayed to the user. only available in credential fields.\n\n**syntax:** **`$secrets`**\n\n**returns:** object\n\n**source:** custom n8n functionality\n\n## **`$today`**\n\n**description:** a datetime representing midnight at the start of the current day.\n\nuses the instance’s time zone (unless overridden in the workflow’s settings).\n\n**syntax:** **`$today`**\n\n**returns:** datetime\n\n**source:** custom n8n functionality\n\n## **`$vars`**\n\n**description:** the [variables](/code/variables/) available to the workflow\n\n**syntax:** **`$vars`**\n\n**returns:** object\n\n**source:** custom n8n functionality\n\n## **`$workflow`**\n\n**description:** information about the current workflow\n\n**syntax:** **`$workflow`**\n\n**returns:** workflowdata\n\n**source:** custom n8n functionality\n root",
11722
- "importantTerms": [
11723
- "returns",
11724
- "description",
11725
- "syntax",
11726
- "source",
11727
- "custom",
11728
- "functionality",
11729
- "node",
11730
- "number",
11731
- "name",
11732
- "data",
11733
- "current",
11734
- "value",
11735
- "input",
11736
- "good",
11737
- "jmespath",
11738
- "return",
11739
- "object",
11740
- "parameters",
11741
- "string",
11742
- "workflow",
11743
- "model",
11744
- "json",
11745
- "request",
11746
- "item",
11747
- "array",
11748
- "fromai",
11749
- "parameter",
11750
- "only",
11751
- "datetime",
11752
- "examples",
11753
- "person",
11754
- "condition",
11755
- "first",
11756
- "from",
11757
- "expression",
11758
- "room",
11759
- "available",
11760
- "secrets",
11761
- "retrieve",
11762
- "binary",
11763
- "execution",
11764
- "provide",
11765
- "boolean",
11766
- "false",
11767
- "time",
11768
- "evening",
11769
- "empty",
11770
- "fred",
11771
- "guests",
11772
- "requirements"
11773
- ]
11774
- }
11775
- },
11776
11777
  {
11777
11778
  "id": "page-0130",
11778
11779
  "title": "WorkflowData",
@@ -12523,6 +12524,59 @@
12523
12524
  },
12524
12525
  {
12525
12526
  "id": "page-0139",
12527
+ "title": "Splitting with conditionals",
12528
+ "url": "https://docs.n8n.io/flow-logic/splitting/index.md",
12529
+ "urlPath": "flow-logic/splitting/index.md",
12530
+ "category": "flow-logic",
12531
+ "subcategory": null,
12532
+ "nodeName": null,
12533
+ "nodeType": null,
12534
+ "content": {
12535
+ "markdown": "# Splitting workflows with conditional nodes\n\nSplitting uses the [IF](../../integrations/builtin/core-nodes/n8n-nodes-base.if/) or [Switch](../../integrations/builtin/core-nodes/n8n-nodes-base.switch/) nodes. It turns a single-branch workflow into a multi-branch workflow. This is a key piece of representing complex logic in n8n.\n\nCompare these workflows:\n\nThis is the power of splitting and conditional nodes in n8n.\n\nRefer to the [IF](../../integrations/builtin/core-nodes/n8n-nodes-base.if/) or [Switch](../../integrations/builtin/core-nodes/n8n-nodes-base.switch/) documentation for usage details.\n",
12536
+ "excerpt": "# Splitting workflows with conditional nodes Splitting uses the [IF](../../integrations/builtin/core-nodes/n8n-nodes-base.if/) or [Switch](../../integrations/builtin/core-nodes/n8n-nodes-base.switch/) nodes. It turns a single-branch workflow into a multi-branch workflow. This is a key piece of representing complex logic in n8n. Compare these workflows: This is the power of splitting and conditional nodes in n8n. Refer to the [IF](../../integrations/builtin/core-nodes/n8n-nodes-base.if/) or [...",
12537
+ "sections": [
12538
+ {
12539
+ "title": "Splitting workflows with conditional nodes",
12540
+ "level": 1,
12541
+ "content": "Splitting uses the [IF](../../integrations/builtin/core-nodes/n8n-nodes-base.if/) or [Switch](../../integrations/builtin/core-nodes/n8n-nodes-base.switch/) nodes. It turns a single-branch workflow into a multi-branch workflow. This is a key piece of representing complex logic in n8n.\n\nCompare these workflows:\n\nThis is the power of splitting and conditional nodes in n8n.\n\nRefer to the [IF](../../integrations/builtin/core-nodes/n8n-nodes-base.if/) or [Switch](../../integrations/builtin/core-nodes/n8n-nodes-base.switch/) documentation for usage details."
12542
+ }
12543
+ ]
12544
+ },
12545
+ "metadata": {
12546
+ "keywords": [
12547
+ "splitting",
12548
+ "with",
12549
+ "conditionals",
12550
+ "workflows",
12551
+ "conditional",
12552
+ "nodes"
12553
+ ],
12554
+ "useCases": [],
12555
+ "operations": [],
12556
+ "codeExamples": 0,
12557
+ "complexity": "beginner",
12558
+ "readingTime": "1 min",
12559
+ "contentLength": 603,
12560
+ "relatedPages": []
12561
+ },
12562
+ "searchIndex": {
12563
+ "fullText": "splitting with conditionals # splitting workflows with conditional nodes\n\nsplitting uses the [if](../../integrations/builtin/core-nodes/n8n-nodes-base.if/) or [switch](../../integrations/builtin/core-nodes/n8n-nodes-base.switch/) nodes. it turns a single-branch workflow into a multi-branch workflow. this is a key piece of representing complex logic in n8n.\n\ncompare these workflows:\n\nthis is the power of splitting and conditional nodes in n8n.\n\nrefer to the [if](../../integrations/builtin/core-nodes/n8n-nodes-base.if/) or [switch](../../integrations/builtin/core-nodes/n8n-nodes-base.switch/) documentation for usage details.\n splitting workflows with conditional nodes",
12564
+ "importantTerms": [
12565
+ "nodes",
12566
+ "splitting",
12567
+ "integrations",
12568
+ "builtin",
12569
+ "core",
12570
+ "base",
12571
+ "switch",
12572
+ "with",
12573
+ "workflows",
12574
+ "conditional"
12575
+ ]
12576
+ }
12577
+ },
12578
+ {
12579
+ "id": "page-0140",
12526
12580
  "title": "Sub-workflows",
12527
12581
  "url": "https://docs.n8n.io/flow-logic/subworkflows/index.md",
12528
12582
  "urlPath": "flow-logic/subworkflows/index.md",
@@ -15345,6 +15399,60 @@
15345
15399
  },
15346
15400
  {
15347
15401
  "id": "page-0181",
15402
+ "title": "License",
15403
+ "url": "https://docs.n8n.io/hosting/configuration/environment-variables/licenses/index.md",
15404
+ "urlPath": "hosting/configuration/environment-variables/licenses/index.md",
15405
+ "category": "hosting",
15406
+ "subcategory": null,
15407
+ "nodeName": null,
15408
+ "nodeType": null,
15409
+ "content": {
15410
+ "markdown": "# License environment variables\n\nFile-based configuration\n\nYou can add `_FILE` to individual variables to provide their configuration in a separate file. Refer to [Keeping sensitive data in separate files](../../configuration-methods/#keeping-sensitive-data-in-separate-files) for more details.\n\nTo enable certain licensed features, you must first activate your license. You can do this either through the UI or by setting environment variables. For more information, see [license key](../../../../license-key/).\n\n| Variable | Type | Default | Description |\n| ----------------------------------------- | ------- | ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `N8N_HIDE_USAGE_PAGE` | boolean | `false` | Hide the usage and plans page in the app. |\n| `N8N_LICENSE_ACTIVATION_KEY` | String | `''` | Activation key to initialize license. Not applicable if the n8n instance was already activated. |\n| `N8N_LICENSE_AUTO_RENEW_ENABLED` | Boolean | `true` | Enables (true) or disables (false) autorenewal for licenses. If disabled, you need to manually renew the license every 10 days by navigating to **Settings** > **Usage and plan**, and pressing `F5`. Failure to renew the license will disable all licensed features. |\n| `N8N_LICENSE_DETACH_FLOATING_ON_SHUTDOWN` | Boolean | `true` | Controls whether the instance releases [floating entitlements](../../../../glossary/#entitlement-n8n) back to the pool upon shutdown. Set to `true` to allow other instances to reuse the entitlements, or `false` to retain them. For production instances that must always keep their licensed features, set this to `false`. |\n| `N8N_LICENSE_SERVER_URL` | String | `https://license.n8n.io/v1` | Server URL to retrieve license. |\n| `N8N_LICENSE_TENANT_ID` | Number | `1` | Tenant ID associated with the license. Only set this variable if explicitly instructed by n8n. |\n| `https_proxy_license_server` | String | `https://user:pass@proxy:port` | Proxy server URL for HTTPS requests to retrieve license. This variable name needs to be lowercase. |\n",
15411
+ "excerpt": "# License environment variables File-based configuration You can add `_FILE` to individual variables to provide their configuration in a separate file. Refer to [Keeping sensitive data in separate files](../../configuration-methods/#keeping-sensitive-data-in-separate-files) for more details. To enable certain licensed features, you must first activate your license. You can do this either through the UI or by setting environment variables. For more information, see [license key](../../../../li...",
15412
+ "sections": [
15413
+ {
15414
+ "title": "License environment variables",
15415
+ "level": 1,
15416
+ "content": "File-based configuration\n\nYou can add `_FILE` to individual variables to provide their configuration in a separate file. Refer to [Keeping sensitive data in separate files](../../configuration-methods/#keeping-sensitive-data-in-separate-files) for more details.\n\nTo enable certain licensed features, you must first activate your license. You can do this either through the UI or by setting environment variables. For more information, see [license key](../../../../license-key/).\n\n| Variable | Type | Default | Description |\n| ----------------------------------------- | ------- | ------------------------------ | -------------------"
15417
+ }
15418
+ ]
15419
+ },
15420
+ "metadata": {
15421
+ "keywords": [
15422
+ "license",
15423
+ "environment",
15424
+ "variables"
15425
+ ],
15426
+ "useCases": [],
15427
+ "operations": [],
15428
+ "codeExamples": 0,
15429
+ "complexity": "beginner",
15430
+ "readingTime": "2 min",
15431
+ "contentLength": 4213,
15432
+ "relatedPages": []
15433
+ },
15434
+ "searchIndex": {
15435
+ "fullText": "license # license environment variables\n\nfile-based configuration\n\nyou can add `_file` to individual variables to provide their configuration in a separate file. refer to [keeping sensitive data in separate files](../../configuration-methods/#keeping-sensitive-data-in-separate-files) for more details.\n\nto enable certain licensed features, you must first activate your license. you can do this either through the ui or by setting environment variables. for more information, see [license key](../../../../license-key/).\n\n| variable | type | default | description |\n| ----------------------------------------- | ------- | ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `n8n_hide_usage_page` | boolean | `false` | hide the usage and plans page in the app. |\n| `n8n_license_activation_key` | string | `''` | activation key to initialize license. not applicable if the n8n instance was already activated. |\n| `n8n_license_auto_renew_enabled` | boolean | `true` | enables (true) or disables (false) autorenewal for licenses. if disabled, you need to manually renew the license every 10 days by navigating to **settings** > **usage and plan**, and pressing `f5`. failure to renew the license will disable all licensed features. |\n| `n8n_license_detach_floating_on_shutdown` | boolean | `true` | controls whether the instance releases [floating entitlements](../../../../glossary/#entitlement-n8n) back to the pool upon shutdown. set to `true` to allow other instances to reuse the entitlements, or `false` to retain them. for production instances that must always keep their licensed features, set this to `false`. |\n| `n8n_license_server_url` | string | `https://license.n8n.io/v1` | server url to retrieve license. |\n| `n8n_license_tenant_id` | number | `1` | tenant id associated with the license. only set this variable if explicitly instructed by n8n. |\n| `https_proxy_license_server` | string | `https://user:pass@proxy:port` | proxy server url for https requests to retrieve license. this variable name needs to be lowercase. |\n license environment variables",
15436
+ "importantTerms": [
15437
+ "license",
15438
+ "variables",
15439
+ "this",
15440
+ "false",
15441
+ "true",
15442
+ "environment",
15443
+ "configuration",
15444
+ "separate",
15445
+ "licensed",
15446
+ "features",
15447
+ "variable",
15448
+ "boolean",
15449
+ "string",
15450
+ "https"
15451
+ ]
15452
+ }
15453
+ },
15454
+ {
15455
+ "id": "page-0182",
15348
15456
  "title": "Logs",
15349
15457
  "url": "https://docs.n8n.io/hosting/configuration/environment-variables/logs/index.md",
15350
15458
  "urlPath": "hosting/configuration/environment-variables/logs/index.md",
@@ -15412,60 +15520,6 @@
15412
15520
  ]
15413
15521
  }
15414
15522
  },
15415
- {
15416
- "id": "page-0182",
15417
- "title": "License",
15418
- "url": "https://docs.n8n.io/hosting/configuration/environment-variables/licenses/index.md",
15419
- "urlPath": "hosting/configuration/environment-variables/licenses/index.md",
15420
- "category": "hosting",
15421
- "subcategory": null,
15422
- "nodeName": null,
15423
- "nodeType": null,
15424
- "content": {
15425
- "markdown": "# License environment variables\n\nFile-based configuration\n\nYou can add `_FILE` to individual variables to provide their configuration in a separate file. Refer to [Keeping sensitive data in separate files](../../configuration-methods/#keeping-sensitive-data-in-separate-files) for more details.\n\nTo enable certain licensed features, you must first activate your license. You can do this either through the UI or by setting environment variables. For more information, see [license key](../../../../license-key/).\n\n| Variable | Type | Default | Description |\n| ----------------------------------------- | ------- | ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `N8N_HIDE_USAGE_PAGE` | boolean | `false` | Hide the usage and plans page in the app. |\n| `N8N_LICENSE_ACTIVATION_KEY` | String | `''` | Activation key to initialize license. Not applicable if the n8n instance was already activated. |\n| `N8N_LICENSE_AUTO_RENEW_ENABLED` | Boolean | `true` | Enables (true) or disables (false) autorenewal for licenses. If disabled, you need to manually renew the license every 10 days by navigating to **Settings** > **Usage and plan**, and pressing `F5`. Failure to renew the license will disable all licensed features. |\n| `N8N_LICENSE_DETACH_FLOATING_ON_SHUTDOWN` | Boolean | `true` | Controls whether the instance releases [floating entitlements](../../../../glossary/#entitlement-n8n) back to the pool upon shutdown. Set to `true` to allow other instances to reuse the entitlements, or `false` to retain them. For production instances that must always keep their licensed features, set this to `false`. |\n| `N8N_LICENSE_SERVER_URL` | String | `https://license.n8n.io/v1` | Server URL to retrieve license. |\n| `N8N_LICENSE_TENANT_ID` | Number | `1` | Tenant ID associated with the license. Only set this variable if explicitly instructed by n8n. |\n| `https_proxy_license_server` | String | `https://user:pass@proxy:port` | Proxy server URL for HTTPS requests to retrieve license. This variable name needs to be lowercase. |\n",
15426
- "excerpt": "# License environment variables File-based configuration You can add `_FILE` to individual variables to provide their configuration in a separate file. Refer to [Keeping sensitive data in separate files](../../configuration-methods/#keeping-sensitive-data-in-separate-files) for more details. To enable certain licensed features, you must first activate your license. You can do this either through the UI or by setting environment variables. For more information, see [license key](../../../../li...",
15427
- "sections": [
15428
- {
15429
- "title": "License environment variables",
15430
- "level": 1,
15431
- "content": "File-based configuration\n\nYou can add `_FILE` to individual variables to provide their configuration in a separate file. Refer to [Keeping sensitive data in separate files](../../configuration-methods/#keeping-sensitive-data-in-separate-files) for more details.\n\nTo enable certain licensed features, you must first activate your license. You can do this either through the UI or by setting environment variables. For more information, see [license key](../../../../license-key/).\n\n| Variable | Type | Default | Description |\n| ----------------------------------------- | ------- | ------------------------------ | -------------------"
15432
- }
15433
- ]
15434
- },
15435
- "metadata": {
15436
- "keywords": [
15437
- "license",
15438
- "environment",
15439
- "variables"
15440
- ],
15441
- "useCases": [],
15442
- "operations": [],
15443
- "codeExamples": 0,
15444
- "complexity": "beginner",
15445
- "readingTime": "2 min",
15446
- "contentLength": 4213,
15447
- "relatedPages": []
15448
- },
15449
- "searchIndex": {
15450
- "fullText": "license # license environment variables\n\nfile-based configuration\n\nyou can add `_file` to individual variables to provide their configuration in a separate file. refer to [keeping sensitive data in separate files](../../configuration-methods/#keeping-sensitive-data-in-separate-files) for more details.\n\nto enable certain licensed features, you must first activate your license. you can do this either through the ui or by setting environment variables. for more information, see [license key](../../../../license-key/).\n\n| variable | type | default | description |\n| ----------------------------------------- | ------- | ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `n8n_hide_usage_page` | boolean | `false` | hide the usage and plans page in the app. |\n| `n8n_license_activation_key` | string | `''` | activation key to initialize license. not applicable if the n8n instance was already activated. |\n| `n8n_license_auto_renew_enabled` | boolean | `true` | enables (true) or disables (false) autorenewal for licenses. if disabled, you need to manually renew the license every 10 days by navigating to **settings** > **usage and plan**, and pressing `f5`. failure to renew the license will disable all licensed features. |\n| `n8n_license_detach_floating_on_shutdown` | boolean | `true` | controls whether the instance releases [floating entitlements](../../../../glossary/#entitlement-n8n) back to the pool upon shutdown. set to `true` to allow other instances to reuse the entitlements, or `false` to retain them. for production instances that must always keep their licensed features, set this to `false`. |\n| `n8n_license_server_url` | string | `https://license.n8n.io/v1` | server url to retrieve license. |\n| `n8n_license_tenant_id` | number | `1` | tenant id associated with the license. only set this variable if explicitly instructed by n8n. |\n| `https_proxy_license_server` | string | `https://user:pass@proxy:port` | proxy server url for https requests to retrieve license. this variable name needs to be lowercase. |\n license environment variables",
15451
- "importantTerms": [
15452
- "license",
15453
- "variables",
15454
- "this",
15455
- "false",
15456
- "true",
15457
- "environment",
15458
- "configuration",
15459
- "separate",
15460
- "licensed",
15461
- "features",
15462
- "variable",
15463
- "boolean",
15464
- "string",
15465
- "https"
15466
- ]
15467
- }
15468
- },
15469
15523
  {
15470
15524
  "id": "page-0183",
15471
15525
  "title": "Nodes",
@@ -19980,47 +20034,6 @@
19980
20034
  },
19981
20035
  {
19982
20036
  "id": "page-0233",
19983
- "title": "Actions library",
19984
- "url": "https://docs.n8n.io/integrations/builtin/app-nodes/index.md",
19985
- "urlPath": "integrations/builtin/app-nodes/index.md",
19986
- "category": "integrations",
19987
- "subcategory": "app-nodes",
19988
- "nodeName": null,
19989
- "nodeType": null,
19990
- "content": {
19991
- "markdown": "# Actions library\n\nThis section provides information about n8n's Actions.\n",
19992
- "excerpt": "# Actions library This section provides information about n8n's Actions....",
19993
- "sections": [
19994
- {
19995
- "title": "Actions library",
19996
- "level": 1,
19997
- "content": "This section provides information about n8n's Actions."
19998
- }
19999
- ]
20000
- },
20001
- "metadata": {
20002
- "keywords": [
20003
- "actions",
20004
- "library"
20005
- ],
20006
- "useCases": [],
20007
- "operations": [],
20008
- "codeExamples": 0,
20009
- "complexity": "beginner",
20010
- "readingTime": "1 min",
20011
- "contentLength": 74,
20012
- "relatedPages": []
20013
- },
20014
- "searchIndex": {
20015
- "fullText": "actions library # actions library\n\nthis section provides information about n8n's actions.\n actions library",
20016
- "importantTerms": [
20017
- "actions",
20018
- "library"
20019
- ]
20020
- }
20021
- },
20022
- {
20023
- "id": "page-0234",
20024
20037
  "title": "Handle rate limits",
20025
20038
  "url": "https://docs.n8n.io/integrations/builtin/rate-limits/index.md",
20026
20039
  "urlPath": "integrations/builtin/rate-limits/index.md",
@@ -20119,6 +20132,47 @@
20119
20132
  ]
20120
20133
  }
20121
20134
  },
20135
+ {
20136
+ "id": "page-0234",
20137
+ "title": "Actions library",
20138
+ "url": "https://docs.n8n.io/integrations/builtin/app-nodes/index.md",
20139
+ "urlPath": "integrations/builtin/app-nodes/index.md",
20140
+ "category": "integrations",
20141
+ "subcategory": "app-nodes",
20142
+ "nodeName": null,
20143
+ "nodeType": null,
20144
+ "content": {
20145
+ "markdown": "# Actions library\n\nThis section provides information about n8n's Actions.\n",
20146
+ "excerpt": "# Actions library This section provides information about n8n's Actions....",
20147
+ "sections": [
20148
+ {
20149
+ "title": "Actions library",
20150
+ "level": 1,
20151
+ "content": "This section provides information about n8n's Actions."
20152
+ }
20153
+ ]
20154
+ },
20155
+ "metadata": {
20156
+ "keywords": [
20157
+ "actions",
20158
+ "library"
20159
+ ],
20160
+ "useCases": [],
20161
+ "operations": [],
20162
+ "codeExamples": 0,
20163
+ "complexity": "beginner",
20164
+ "readingTime": "1 min",
20165
+ "contentLength": 74,
20166
+ "relatedPages": []
20167
+ },
20168
+ "searchIndex": {
20169
+ "fullText": "actions library # actions library\n\nthis section provides information about n8n's actions.\n actions library",
20170
+ "importantTerms": [
20171
+ "actions",
20172
+ "library"
20173
+ ]
20174
+ }
20175
+ },
20122
20176
  {
20123
20177
  "id": "page-0235",
20124
20178
  "title": "Action Network",
@@ -24680,27 +24734,27 @@
24680
24734
  },
24681
24735
  {
24682
24736
  "id": "page-0304",
24683
- "title": "Freshdesk",
24684
- "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.freshdesk/index.md",
24685
- "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.freshdesk/index.md",
24737
+ "title": "Flow",
24738
+ "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.flow/index.md",
24739
+ "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.flow/index.md",
24686
24740
  "category": "integrations",
24687
24741
  "subcategory": "app-nodes",
24688
- "nodeName": "freshdesk",
24689
- "nodeType": "n8n-nodes-base.freshdesk",
24742
+ "nodeName": "flow",
24743
+ "nodeType": "n8n-nodes-base.flow",
24690
24744
  "content": {
24691
- "markdown": "# Freshdesk node\n\nUse the Freshdesk node 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.\n\nOn this page, you'll find a list of operations the Freshdesk node supports and links to more resources.\n\nCredentials\n\nRefer to [Freshdesk credentials](../../credentials/freshdesk/) for guidance on setting up authentication.\n\n## Operations\n\n- Contact\n - Create a new contact\n - Delete a contact\n - Get a contact\n - Get all contacts\n - Update a contact\n- Ticket\n - Create a new ticket\n - Delete a ticket\n - Get a ticket\n - Get all tickets\n - Update a ticket\n\n## Templates and examples\n\n**Create ticket on specific customer messages in Telegram**\n\nby tanaypant\n\n[View template details](https://n8n.io/workflows/368-create-ticket-on-specific-customer-messages-in-telegram/)\n\n**Create a new Freshdesk ticket**\n\nby amudhan\n\n[View template details](https://n8n.io/workflows/448-create-a-new-freshdesk-ticket/)\n\n**Automate CSAT Surveys with Freshdesk & Store Responses in Google Sheets**\n\nby PollupAI\n\n[View template details](https://n8n.io/workflows/4238-automate-csat-surveys-with-freshdesk-and-store-responses-in-google-sheets/)\n\n[Browse Freshdesk integration templates](https://n8n.io/integrations/freshdesk/), or [search all templates](https://n8n.io/workflows/)\n",
24692
- "excerpt": "# Freshdesk node Use the Freshdesk node 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. Credentials Refer to [Freshdesk credentials](../../credentials/freshdesk/) for guidance on setting up authentication. ## Operations...",
24745
+ "markdown": "# Flow node\n\nUse the Flow node 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.\n\nOn this page, you'll find a list of operations the Flow node supports and links to more resources.\n\nCredentials\n\nRefer to [Flow credentials](../../credentials/flow/) for guidance on setting up authentication.\n\n## Operations\n\n- Task\n - Create a new task\n - Update a task\n - Get a task\n - Get all the tasks\n\n## Templates and examples\n\n**Automate Blog Content Creation with OpenAI, Google Sheets & Email Approval Flow**\n\nby Billy Christi\n\n[View template details](https://n8n.io/workflows/4371-automate-blog-content-creation-with-openai-google-sheets-and-email-approval-flow/)\n\n**Automated PDF Invoice Processing & Approval Flow using OpenAI and Google Sheets**\n\nby Billy Christi\n\n[View template details](https://n8n.io/workflows/4452-automated-pdf-invoice-processing-and-approval-flow-using-openai-and-google-sheets/)\n\n**Scale Deal Flow with a Pitch Deck AI Vision, Chatbot and QDrant Vector Store**\n\nby Jimleuk\n\n[View template details](https://n8n.io/workflows/2464-scale-deal-flow-with-a-pitch-deck-ai-vision-chatbot-and-qdrant-vector-store/)\n\n[Browse Flow integration templates](https://n8n.io/integrations/flow/), or [search all templates](https://n8n.io/workflows/)\n",
24746
+ "excerpt": "# Flow node Use the Flow node 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. Credentials Refer to [Flow credentials](../../credentials/flow/) for guidance on setting up authentication. ## Operations - Task - Create a new task - Update a task - Get a task...",
24693
24747
  "sections": [
24694
24748
  {
24695
- "title": "Freshdesk node",
24749
+ "title": "Flow node",
24696
24750
  "level": 1,
24697
- "content": "Use the Freshdesk node 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.\n\nOn this page, you'll find a list of operations the Freshdesk node supports and links to more resources.\n\nCredentials\n\nRefer to [Freshdesk credentials](../../credentials/freshdesk/) for guidance on setting up authentication."
24751
+ "content": "Use the Flow node 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.\n\nOn this page, you'll find a list of operations the Flow node supports and links to more resources.\n\nCredentials\n\nRefer to [Flow credentials](../../credentials/flow/) for guidance on setting up authentication."
24698
24752
  }
24699
24753
  ]
24700
24754
  },
24701
24755
  "metadata": {
24702
24756
  "keywords": [
24703
- "freshdesk",
24757
+ "flow",
24704
24758
  "node",
24705
24759
  "operations",
24706
24760
  "templates",
@@ -24713,21 +24767,23 @@
24713
24767
  "codeExamples": 0,
24714
24768
  "complexity": "beginner",
24715
24769
  "readingTime": "1 min",
24716
- "contentLength": 1430,
24770
+ "contentLength": 1383,
24717
24771
  "relatedPages": []
24718
24772
  },
24719
24773
  "searchIndex": {
24720
- "fullText": "freshdesk # freshdesk node\n\nuse the freshdesk node 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.\n\non this page, you'll find a list of operations the freshdesk node supports and links to more resources.\n\ncredentials\n\nrefer to [freshdesk credentials](../../credentials/freshdesk/) for guidance on setting up authentication.\n\n## operations\n\n- contact\n - create a new contact\n - delete a contact\n - get a contact\n - get all contacts\n - update a contact\n- ticket\n - create a new ticket\n - delete a ticket\n - get a ticket\n - get all tickets\n - update a ticket\n\n## templates and examples\n\n**create ticket on specific customer messages in telegram**\n\nby tanaypant\n\n[view template details](https://n8n.io/workflows/368-create-ticket-on-specific-customer-messages-in-telegram/)\n\n**create a new freshdesk ticket**\n\nby amudhan\n\n[view template details](https://n8n.io/workflows/448-create-a-new-freshdesk-ticket/)\n\n**automate csat surveys with freshdesk & store responses in google sheets**\n\nby pollupai\n\n[view template details](https://n8n.io/workflows/4238-automate-csat-surveys-with-freshdesk-and-store-responses-in-google-sheets/)\n\n[browse freshdesk integration templates](https://n8n.io/integrations/freshdesk/), or [search all templates](https://n8n.io/workflows/)\n freshdesk node",
24774
+ "fullText": "flow # flow node\n\nuse the flow node 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.\n\non this page, you'll find a list of operations the flow node supports and links to more resources.\n\ncredentials\n\nrefer to [flow credentials](../../credentials/flow/) for guidance on setting up authentication.\n\n## operations\n\n- task\n - create a new task\n - update a task\n - get a task\n - get all the tasks\n\n## templates and examples\n\n**automate blog content creation with openai, google sheets & email approval flow**\n\nby billy christi\n\n[view template details](https://n8n.io/workflows/4371-automate-blog-content-creation-with-openai-google-sheets-and-email-approval-flow/)\n\n**automated pdf invoice processing & approval flow using openai and google sheets**\n\nby billy christi\n\n[view template details](https://n8n.io/workflows/4452-automated-pdf-invoice-processing-and-approval-flow-using-openai-and-google-sheets/)\n\n**scale deal flow with a pitch deck ai vision, chatbot and qdrant vector store**\n\nby jimleuk\n\n[view template details](https://n8n.io/workflows/2464-scale-deal-flow-with-a-pitch-deck-ai-vision-chatbot-and-qdrant-vector-store/)\n\n[browse flow integration templates](https://n8n.io/integrations/flow/), or [search all templates](https://n8n.io/workflows/)\n flow node",
24721
24775
  "importantTerms": [
24722
- "freshdesk",
24723
- "ticket",
24724
- "create",
24725
- "contact",
24776
+ "flow",
24777
+ "with",
24726
24778
  "https",
24727
24779
  "node",
24780
+ "task",
24781
+ "openai",
24782
+ "google",
24783
+ "sheets",
24784
+ "approval",
24728
24785
  "workflows",
24729
24786
  "automate",
24730
- "with",
24731
24787
  "credentials",
24732
24788
  "templates",
24733
24789
  "view",
@@ -24738,27 +24794,27 @@
24738
24794
  },
24739
24795
  {
24740
24796
  "id": "page-0305",
24741
- "title": "Flow",
24742
- "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.flow/index.md",
24743
- "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.flow/index.md",
24797
+ "title": "Freshdesk",
24798
+ "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.freshdesk/index.md",
24799
+ "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.freshdesk/index.md",
24744
24800
  "category": "integrations",
24745
24801
  "subcategory": "app-nodes",
24746
- "nodeName": "flow",
24747
- "nodeType": "n8n-nodes-base.flow",
24802
+ "nodeName": "freshdesk",
24803
+ "nodeType": "n8n-nodes-base.freshdesk",
24748
24804
  "content": {
24749
- "markdown": "# Flow node\n\nUse the Flow node 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.\n\nOn this page, you'll find a list of operations the Flow node supports and links to more resources.\n\nCredentials\n\nRefer to [Flow credentials](../../credentials/flow/) for guidance on setting up authentication.\n\n## Operations\n\n- Task\n - Create a new task\n - Update a task\n - Get a task\n - Get all the tasks\n\n## Templates and examples\n\n**Automate Blog Content Creation with OpenAI, Google Sheets & Email Approval Flow**\n\nby Billy Christi\n\n[View template details](https://n8n.io/workflows/4371-automate-blog-content-creation-with-openai-google-sheets-and-email-approval-flow/)\n\n**Automated PDF Invoice Processing & Approval Flow using OpenAI and Google Sheets**\n\nby Billy Christi\n\n[View template details](https://n8n.io/workflows/4452-automated-pdf-invoice-processing-and-approval-flow-using-openai-and-google-sheets/)\n\n**Scale Deal Flow with a Pitch Deck AI Vision, Chatbot and QDrant Vector Store**\n\nby Jimleuk\n\n[View template details](https://n8n.io/workflows/2464-scale-deal-flow-with-a-pitch-deck-ai-vision-chatbot-and-qdrant-vector-store/)\n\n[Browse Flow integration templates](https://n8n.io/integrations/flow/), or [search all templates](https://n8n.io/workflows/)\n",
24750
- "excerpt": "# Flow node Use the Flow node 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. Credentials Refer to [Flow credentials](../../credentials/flow/) for guidance on setting up authentication. ## Operations - Task - Create a new task - Update a task - Get a task...",
24805
+ "markdown": "# Freshdesk node\n\nUse the Freshdesk node 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.\n\nOn this page, you'll find a list of operations the Freshdesk node supports and links to more resources.\n\nCredentials\n\nRefer to [Freshdesk credentials](../../credentials/freshdesk/) for guidance on setting up authentication.\n\n## Operations\n\n- Contact\n - Create a new contact\n - Delete a contact\n - Get a contact\n - Get all contacts\n - Update a contact\n- Ticket\n - Create a new ticket\n - Delete a ticket\n - Get a ticket\n - Get all tickets\n - Update a ticket\n\n## Templates and examples\n\n**Create ticket on specific customer messages in Telegram**\n\nby tanaypant\n\n[View template details](https://n8n.io/workflows/368-create-ticket-on-specific-customer-messages-in-telegram/)\n\n**Create a new Freshdesk ticket**\n\nby amudhan\n\n[View template details](https://n8n.io/workflows/448-create-a-new-freshdesk-ticket/)\n\n**Automate CSAT Surveys with Freshdesk & Store Responses in Google Sheets**\n\nby PollupAI\n\n[View template details](https://n8n.io/workflows/4238-automate-csat-surveys-with-freshdesk-and-store-responses-in-google-sheets/)\n\n[Browse Freshdesk integration templates](https://n8n.io/integrations/freshdesk/), or [search all templates](https://n8n.io/workflows/)\n",
24806
+ "excerpt": "# Freshdesk node Use the Freshdesk node 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. Credentials Refer to [Freshdesk credentials](../../credentials/freshdesk/) for guidance on setting up authentication. ## Operations...",
24751
24807
  "sections": [
24752
24808
  {
24753
- "title": "Flow node",
24809
+ "title": "Freshdesk node",
24754
24810
  "level": 1,
24755
- "content": "Use the Flow node 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.\n\nOn this page, you'll find a list of operations the Flow node supports and links to more resources.\n\nCredentials\n\nRefer to [Flow credentials](../../credentials/flow/) for guidance on setting up authentication."
24811
+ "content": "Use the Freshdesk node 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.\n\nOn this page, you'll find a list of operations the Freshdesk node supports and links to more resources.\n\nCredentials\n\nRefer to [Freshdesk credentials](../../credentials/freshdesk/) for guidance on setting up authentication."
24756
24812
  }
24757
24813
  ]
24758
24814
  },
24759
24815
  "metadata": {
24760
24816
  "keywords": [
24761
- "flow",
24817
+ "freshdesk",
24762
24818
  "node",
24763
24819
  "operations",
24764
24820
  "templates",
@@ -24771,23 +24827,21 @@
24771
24827
  "codeExamples": 0,
24772
24828
  "complexity": "beginner",
24773
24829
  "readingTime": "1 min",
24774
- "contentLength": 1383,
24830
+ "contentLength": 1430,
24775
24831
  "relatedPages": []
24776
24832
  },
24777
24833
  "searchIndex": {
24778
- "fullText": "flow # flow node\n\nuse the flow node 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.\n\non this page, you'll find a list of operations the flow node supports and links to more resources.\n\ncredentials\n\nrefer to [flow credentials](../../credentials/flow/) for guidance on setting up authentication.\n\n## operations\n\n- task\n - create a new task\n - update a task\n - get a task\n - get all the tasks\n\n## templates and examples\n\n**automate blog content creation with openai, google sheets & email approval flow**\n\nby billy christi\n\n[view template details](https://n8n.io/workflows/4371-automate-blog-content-creation-with-openai-google-sheets-and-email-approval-flow/)\n\n**automated pdf invoice processing & approval flow using openai and google sheets**\n\nby billy christi\n\n[view template details](https://n8n.io/workflows/4452-automated-pdf-invoice-processing-and-approval-flow-using-openai-and-google-sheets/)\n\n**scale deal flow with a pitch deck ai vision, chatbot and qdrant vector store**\n\nby jimleuk\n\n[view template details](https://n8n.io/workflows/2464-scale-deal-flow-with-a-pitch-deck-ai-vision-chatbot-and-qdrant-vector-store/)\n\n[browse flow integration templates](https://n8n.io/integrations/flow/), or [search all templates](https://n8n.io/workflows/)\n flow node",
24834
+ "fullText": "freshdesk # freshdesk node\n\nuse the freshdesk node 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.\n\non this page, you'll find a list of operations the freshdesk node supports and links to more resources.\n\ncredentials\n\nrefer to [freshdesk credentials](../../credentials/freshdesk/) for guidance on setting up authentication.\n\n## operations\n\n- contact\n - create a new contact\n - delete a contact\n - get a contact\n - get all contacts\n - update a contact\n- ticket\n - create a new ticket\n - delete a ticket\n - get a ticket\n - get all tickets\n - update a ticket\n\n## templates and examples\n\n**create ticket on specific customer messages in telegram**\n\nby tanaypant\n\n[view template details](https://n8n.io/workflows/368-create-ticket-on-specific-customer-messages-in-telegram/)\n\n**create a new freshdesk ticket**\n\nby amudhan\n\n[view template details](https://n8n.io/workflows/448-create-a-new-freshdesk-ticket/)\n\n**automate csat surveys with freshdesk & store responses in google sheets**\n\nby pollupai\n\n[view template details](https://n8n.io/workflows/4238-automate-csat-surveys-with-freshdesk-and-store-responses-in-google-sheets/)\n\n[browse freshdesk integration templates](https://n8n.io/integrations/freshdesk/), or [search all templates](https://n8n.io/workflows/)\n freshdesk node",
24779
24835
  "importantTerms": [
24780
- "flow",
24781
- "with",
24836
+ "freshdesk",
24837
+ "ticket",
24838
+ "create",
24839
+ "contact",
24782
24840
  "https",
24783
24841
  "node",
24784
- "task",
24785
- "openai",
24786
- "google",
24787
- "sheets",
24788
- "approval",
24789
24842
  "workflows",
24790
24843
  "automate",
24844
+ "with",
24791
24845
  "credentials",
24792
24846
  "templates",
24793
24847
  "view",
@@ -30559,6 +30613,55 @@
30559
30613
  },
30560
30614
  {
30561
30615
  "id": "page-0386",
30616
+ "title": "Mocean",
30617
+ "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.mocean/index.md",
30618
+ "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.mocean/index.md",
30619
+ "category": "integrations",
30620
+ "subcategory": "app-nodes",
30621
+ "nodeName": "mocean",
30622
+ "nodeType": "n8n-nodes-base.mocean",
30623
+ "content": {
30624
+ "markdown": "# Mocean node\n\nUse the Mocean node to automate work in Mocean, and integrate Mocean with other applications. n8n has built-in support for a wide range of Mocean features, including sending SMS, and voice messages.\n\nOn this page, you'll find a list of operations the Mocean node supports and links to more resources.\n\nCredentials\n\nRefer to [Mocean credentials](../../credentials/mocean/) for guidance on setting up authentication.\n\n## Operations\n\n- SMS\n - Send SMS/Voice message\n- Voice\n - Send SMS/Voice message\n\n## Templates and examples\n\n[Browse Mocean integration templates](https://n8n.io/integrations/mocean/), or [search all templates](https://n8n.io/workflows/)\n",
30625
+ "excerpt": "# Mocean node Use the Mocean node to automate work in Mocean, and integrate Mocean with other applications. n8n has built-in support for a wide range of Mocean features, including sending SMS, and voice messages. On this page, you'll find a list of operations the Mocean node supports and links to more resources. Credentials Refer to [Mocean credentials](../../credentials/mocean/) for guidance on setting up authentication. ## Operations - SMS - Send SMS/Voice message - Voice - Send SMS/...",
30626
+ "sections": [
30627
+ {
30628
+ "title": "Mocean node",
30629
+ "level": 1,
30630
+ "content": "Use the Mocean node to automate work in Mocean, and integrate Mocean with other applications. n8n has built-in support for a wide range of Mocean features, including sending SMS, and voice messages.\n\nOn this page, you'll find a list of operations the Mocean node supports and links to more resources.\n\nCredentials\n\nRefer to [Mocean credentials](../../credentials/mocean/) for guidance on setting up authentication."
30631
+ }
30632
+ ]
30633
+ },
30634
+ "metadata": {
30635
+ "keywords": [
30636
+ "mocean",
30637
+ "node",
30638
+ "operations",
30639
+ "templates",
30640
+ "examples"
30641
+ ],
30642
+ "useCases": [],
30643
+ "operations": [
30644
+ ""
30645
+ ],
30646
+ "codeExamples": 0,
30647
+ "complexity": "beginner",
30648
+ "readingTime": "1 min",
30649
+ "contentLength": 671,
30650
+ "relatedPages": []
30651
+ },
30652
+ "searchIndex": {
30653
+ "fullText": "mocean # mocean node\n\nuse the mocean node to automate work in mocean, and integrate mocean with other applications. n8n has built-in support for a wide range of mocean features, including sending sms, and voice messages.\n\non this page, you'll find a list of operations the mocean node supports and links to more resources.\n\ncredentials\n\nrefer to [mocean credentials](../../credentials/mocean/) for guidance on setting up authentication.\n\n## operations\n\n- sms\n - send sms/voice message\n- voice\n - send sms/voice message\n\n## templates and examples\n\n[browse mocean integration templates](https://n8n.io/integrations/mocean/), or [search all templates](https://n8n.io/workflows/)\n mocean node",
30654
+ "importantTerms": [
30655
+ "mocean",
30656
+ "node",
30657
+ "voice",
30658
+ "credentials",
30659
+ "templates"
30660
+ ]
30661
+ }
30662
+ },
30663
+ {
30664
+ "id": "page-0387",
30562
30665
  "title": "monday.com",
30563
30666
  "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.mondaycom/index.md",
30564
30667
  "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.mondaycom/index.md",
@@ -30634,55 +30737,6 @@
30634
30737
  ]
30635
30738
  }
30636
30739
  },
30637
- {
30638
- "id": "page-0387",
30639
- "title": "Mocean",
30640
- "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.mocean/index.md",
30641
- "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.mocean/index.md",
30642
- "category": "integrations",
30643
- "subcategory": "app-nodes",
30644
- "nodeName": "mocean",
30645
- "nodeType": "n8n-nodes-base.mocean",
30646
- "content": {
30647
- "markdown": "# Mocean node\n\nUse the Mocean node to automate work in Mocean, and integrate Mocean with other applications. n8n has built-in support for a wide range of Mocean features, including sending SMS, and voice messages.\n\nOn this page, you'll find a list of operations the Mocean node supports and links to more resources.\n\nCredentials\n\nRefer to [Mocean credentials](../../credentials/mocean/) for guidance on setting up authentication.\n\n## Operations\n\n- SMS\n - Send SMS/Voice message\n- Voice\n - Send SMS/Voice message\n\n## Templates and examples\n\n[Browse Mocean integration templates](https://n8n.io/integrations/mocean/), or [search all templates](https://n8n.io/workflows/)\n",
30648
- "excerpt": "# Mocean node Use the Mocean node to automate work in Mocean, and integrate Mocean with other applications. n8n has built-in support for a wide range of Mocean features, including sending SMS, and voice messages. On this page, you'll find a list of operations the Mocean node supports and links to more resources. Credentials Refer to [Mocean credentials](../../credentials/mocean/) for guidance on setting up authentication. ## Operations - SMS - Send SMS/Voice message - Voice - Send SMS/...",
30649
- "sections": [
30650
- {
30651
- "title": "Mocean node",
30652
- "level": 1,
30653
- "content": "Use the Mocean node to automate work in Mocean, and integrate Mocean with other applications. n8n has built-in support for a wide range of Mocean features, including sending SMS, and voice messages.\n\nOn this page, you'll find a list of operations the Mocean node supports and links to more resources.\n\nCredentials\n\nRefer to [Mocean credentials](../../credentials/mocean/) for guidance on setting up authentication."
30654
- }
30655
- ]
30656
- },
30657
- "metadata": {
30658
- "keywords": [
30659
- "mocean",
30660
- "node",
30661
- "operations",
30662
- "templates",
30663
- "examples"
30664
- ],
30665
- "useCases": [],
30666
- "operations": [
30667
- ""
30668
- ],
30669
- "codeExamples": 0,
30670
- "complexity": "beginner",
30671
- "readingTime": "1 min",
30672
- "contentLength": 671,
30673
- "relatedPages": []
30674
- },
30675
- "searchIndex": {
30676
- "fullText": "mocean # mocean node\n\nuse the mocean node to automate work in mocean, and integrate mocean with other applications. n8n has built-in support for a wide range of mocean features, including sending sms, and voice messages.\n\non this page, you'll find a list of operations the mocean node supports and links to more resources.\n\ncredentials\n\nrefer to [mocean credentials](../../credentials/mocean/) for guidance on setting up authentication.\n\n## operations\n\n- sms\n - send sms/voice message\n- voice\n - send sms/voice message\n\n## templates and examples\n\n[browse mocean integration templates](https://n8n.io/integrations/mocean/), or [search all templates](https://n8n.io/workflows/)\n mocean node",
30677
- "importantTerms": [
30678
- "mocean",
30679
- "node",
30680
- "voice",
30681
- "credentials",
30682
- "templates"
30683
- ]
30684
- }
30685
- },
30686
30740
  {
30687
30741
  "id": "page-0388",
30688
30742
  "title": "MongoDB",
@@ -30975,6 +31029,52 @@
30975
31029
  },
30976
31030
  {
30977
31031
  "id": "page-0393",
31032
+ "title": "Customer Messenger (n8n Training)",
31033
+ "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.n8ntrainingcustomermessenger/index.md",
31034
+ "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.n8ntrainingcustomermessenger/index.md",
31035
+ "category": "integrations",
31036
+ "subcategory": "app-nodes",
31037
+ "nodeName": "n8ntrainingcustomermessenger",
31038
+ "nodeType": "n8n-nodes-base.n8ntrainingcustomermessenger",
31039
+ "content": {
31040
+ "markdown": "# Customer Messenger (n8n Training) node\n\nUse this node only for the n8n new user onboarding tutorial. It provides no further functionality.\n",
31041
+ "excerpt": "# Customer Messenger (n8n Training) node Use this node only for the n8n new user onboarding tutorial. It provides no further functionality....",
31042
+ "sections": [
31043
+ {
31044
+ "title": "Customer Messenger (n8n Training) node",
31045
+ "level": 1,
31046
+ "content": "Use this node only for the n8n new user onboarding tutorial. It provides no further functionality."
31047
+ }
31048
+ ]
31049
+ },
31050
+ "metadata": {
31051
+ "keywords": [
31052
+ "customer",
31053
+ "messenger",
31054
+ "(n8n",
31055
+ "training)",
31056
+ "node"
31057
+ ],
31058
+ "useCases": [],
31059
+ "operations": [],
31060
+ "codeExamples": 0,
31061
+ "complexity": "beginner",
31062
+ "readingTime": "1 min",
31063
+ "contentLength": 141,
31064
+ "relatedPages": []
31065
+ },
31066
+ "searchIndex": {
31067
+ "fullText": "customer messenger (n8n training) # customer messenger (n8n training) node\n\nuse this node only for the n8n new user onboarding tutorial. it provides no further functionality.\n customer messenger (n8n training) node",
31068
+ "importantTerms": [
31069
+ "customer",
31070
+ "messenger",
31071
+ "training",
31072
+ "node"
31073
+ ]
31074
+ }
31075
+ },
31076
+ {
31077
+ "id": "page-0394",
30978
31078
  "title": "NASA",
30979
31079
  "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.nasa/index.md",
30980
31080
  "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.nasa/index.md",
@@ -31041,52 +31141,6 @@
31041
31141
  ]
31042
31142
  }
31043
31143
  },
31044
- {
31045
- "id": "page-0394",
31046
- "title": "Customer Messenger (n8n Training)",
31047
- "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.n8ntrainingcustomermessenger/index.md",
31048
- "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.n8ntrainingcustomermessenger/index.md",
31049
- "category": "integrations",
31050
- "subcategory": "app-nodes",
31051
- "nodeName": "n8ntrainingcustomermessenger",
31052
- "nodeType": "n8n-nodes-base.n8ntrainingcustomermessenger",
31053
- "content": {
31054
- "markdown": "# Customer Messenger (n8n Training) node\n\nUse this node only for the n8n new user onboarding tutorial. It provides no further functionality.\n",
31055
- "excerpt": "# Customer Messenger (n8n Training) node Use this node only for the n8n new user onboarding tutorial. It provides no further functionality....",
31056
- "sections": [
31057
- {
31058
- "title": "Customer Messenger (n8n Training) node",
31059
- "level": 1,
31060
- "content": "Use this node only for the n8n new user onboarding tutorial. It provides no further functionality."
31061
- }
31062
- ]
31063
- },
31064
- "metadata": {
31065
- "keywords": [
31066
- "customer",
31067
- "messenger",
31068
- "(n8n",
31069
- "training)",
31070
- "node"
31071
- ],
31072
- "useCases": [],
31073
- "operations": [],
31074
- "codeExamples": 0,
31075
- "complexity": "beginner",
31076
- "readingTime": "1 min",
31077
- "contentLength": 141,
31078
- "relatedPages": []
31079
- },
31080
- "searchIndex": {
31081
- "fullText": "customer messenger (n8n training) # customer messenger (n8n training) node\n\nuse this node only for the n8n new user onboarding tutorial. it provides no further functionality.\n customer messenger (n8n training) node",
31082
- "importantTerms": [
31083
- "customer",
31084
- "messenger",
31085
- "training",
31086
- "node"
31087
- ]
31088
- }
31089
- },
31090
31144
  {
31091
31145
  "id": "page-0395",
31092
31146
  "title": "Netlify",
@@ -48488,6 +48542,80 @@
48488
48542
  },
48489
48543
  {
48490
48544
  "id": "page-0618",
48545
+ "title": "Token Splitter",
48546
+ "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittertokensplitter/index.md",
48547
+ "urlPath": "integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittertokensplitter/index.md",
48548
+ "category": "cluster-nodes",
48549
+ "subcategory": null,
48550
+ "nodeName": null,
48551
+ "nodeType": null,
48552
+ "content": {
48553
+ "markdown": "# Token Splitter node\n\nThe Token Splitter node splits a raw text string by first converting the text into BPE tokens, then splits these tokens into chunks and converts the tokens within a single chunk back into text.\n\nOn this page, you'll find the node parameters for the Token Splitter node, and links to more resources.\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for each item in turn. For example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nIn sub-nodes, the expression always resolves to the first item. For example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\n## Node parameters\n\n- **Chunk Size**: Enter the number of characters in each chunk.\n- **Chunk Overlap**: Enter how much overlap to have between chunks.\n\n## Templates and examples\n\n**🤖 AI Powered RAG Chatbot for Your Docs + Google Drive + Gemini + Qdrant**\n\nby Joseph LePage\n\n[View template details](https://n8n.io/workflows/2982-ai-powered-rag-chatbot-for-your-docs-google-drive-gemini-qdrant/)\n\n**AI Voice Chatbot with ElevenLabs & OpenAI for Customer Service and Restaurants**\n\nby Davide Boizza\n\n[View template details](https://n8n.io/workflows/2846-ai-voice-chatbot-with-elevenlabs-and-openai-for-customer-service-and-restaurants/)\n\n**Complete business WhatsApp AI-Powered RAG Chatbot using OpenAI**\n\nby Davide Boizza\n\n[View template details](https://n8n.io/workflows/2845-complete-business-whatsapp-ai-powered-rag-chatbot-using-openai/)\n\n[Browse Token Splitter integration templates](https://n8n.io/integrations/token-splitter/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nRefer to [LangChain's token documentation](https://js.langchain.com/docs/concepts/tokens/) and [LangChain's text splitter documentation](https://js.langchain.com/docs/concepts/text_splitters/) for more information about the service.\n\nView n8n's [Advanced AI](../../../../../advanced-ai/) documentation.\n",
48554
+ "excerpt": "# Token Splitter node The Token Splitter node splits a raw text string by first converting the text into BPE tokens, then splits these tokens into chunks and converts the tokens within a single chunk back into text. On this page, you'll find the node parameters for the Token Splitter node, and links to more resources. Parameter resolution in sub-nodes Sub-nodes behave differently to other nodes when processing multiple items using an expression. Most nodes, including root nodes, take any nu...",
48555
+ "sections": [
48556
+ {
48557
+ "title": "Token Splitter node",
48558
+ "level": 1,
48559
+ "content": "The Token Splitter node splits a raw text string by first converting the text into BPE tokens, then splits these tokens into chunks and converts the tokens within a single chunk back into text.\n\nOn this page, you'll find the node parameters for the Token Splitter node, and links to more resources.\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for each item in turn. For example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nIn sub-nodes, the expression always resolves to the first item. For example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name."
48560
+ }
48561
+ ]
48562
+ },
48563
+ "metadata": {
48564
+ "keywords": [
48565
+ "token",
48566
+ "splitter",
48567
+ "node",
48568
+ "parameters",
48569
+ "templates",
48570
+ "examples",
48571
+ "related",
48572
+ "resources"
48573
+ ],
48574
+ "useCases": [],
48575
+ "operations": [],
48576
+ "codeExamples": 0,
48577
+ "complexity": "beginner",
48578
+ "readingTime": "2 min",
48579
+ "contentLength": 2294,
48580
+ "relatedPages": []
48581
+ },
48582
+ "searchIndex": {
48583
+ "fullText": "token splitter # token splitter node\n\nthe token splitter node splits a raw text string by first converting the text into bpe tokens, then splits these tokens into chunks and converts the tokens within a single chunk back into text.\n\non this page, you'll find the node parameters for the token splitter node, and links to more resources.\n\nparameter resolution in sub-nodes\n\nsub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nmost nodes, including root nodes, take any number of items as input, process these items, and output the results. you can use expressions to refer to input items, and the node resolves the expression for each item in turn. for example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nin sub-nodes, the expression always resolves to the first item. for example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\n## node parameters\n\n- **chunk size**: enter the number of characters in each chunk.\n- **chunk overlap**: enter how much overlap to have between chunks.\n\n## templates and examples\n\n**🤖 ai powered rag chatbot for your docs + google drive + gemini + qdrant**\n\nby joseph lepage\n\n[view template details](https://n8n.io/workflows/2982-ai-powered-rag-chatbot-for-your-docs-google-drive-gemini-qdrant/)\n\n**ai voice chatbot with elevenlabs & openai for customer service and restaurants**\n\nby davide boizza\n\n[view template details](https://n8n.io/workflows/2846-ai-voice-chatbot-with-elevenlabs-and-openai-for-customer-service-and-restaurants/)\n\n**complete business whatsapp ai-powered rag chatbot using openai**\n\nby davide boizza\n\n[view template details](https://n8n.io/workflows/2845-complete-business-whatsapp-ai-powered-rag-chatbot-using-openai/)\n\n[browse token splitter integration templates](https://n8n.io/integrations/token-splitter/), or [search all templates](https://n8n.io/workflows/)\n\n## related resources\n\nrefer to [langchain's token documentation](https://js.langchain.com/docs/concepts/tokens/) and [langchain's text splitter documentation](https://js.langchain.com/docs/concepts/text_splitters/) for more information about the service.\n\nview n8n's [advanced ai](../../../../../advanced-ai/) documentation.\n token splitter node",
48584
+ "importantTerms": [
48585
+ "token",
48586
+ "splitter",
48587
+ "node",
48588
+ "https",
48589
+ "nodes",
48590
+ "name",
48591
+ "chatbot",
48592
+ "expression",
48593
+ "text",
48594
+ "tokens",
48595
+ "chunk",
48596
+ "items",
48597
+ "input",
48598
+ "resolves",
48599
+ "powered",
48600
+ "docs",
48601
+ "view",
48602
+ "workflows",
48603
+ "openai",
48604
+ "langchain",
48605
+ "first",
48606
+ "into",
48607
+ "using",
48608
+ "each",
48609
+ "templates",
48610
+ "template",
48611
+ "details",
48612
+ "service",
48613
+ "documentation"
48614
+ ]
48615
+ }
48616
+ },
48617
+ {
48618
+ "id": "page-0619",
48491
48619
  "title": "AI Agent Tool",
48492
48620
  "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolaiagent/index.md",
48493
48621
  "urlPath": "integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolaiagent/index.md",
@@ -48576,80 +48704,6 @@
48576
48704
  ]
48577
48705
  }
48578
48706
  },
48579
- {
48580
- "id": "page-0619",
48581
- "title": "Token Splitter",
48582
- "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittertokensplitter/index.md",
48583
- "urlPath": "integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittertokensplitter/index.md",
48584
- "category": "cluster-nodes",
48585
- "subcategory": null,
48586
- "nodeName": null,
48587
- "nodeType": null,
48588
- "content": {
48589
- "markdown": "# Token Splitter node\n\nThe Token Splitter node splits a raw text string by first converting the text into BPE tokens, then splits these tokens into chunks and converts the tokens within a single chunk back into text.\n\nOn this page, you'll find the node parameters for the Token Splitter node, and links to more resources.\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for each item in turn. For example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nIn sub-nodes, the expression always resolves to the first item. For example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\n## Node parameters\n\n- **Chunk Size**: Enter the number of characters in each chunk.\n- **Chunk Overlap**: Enter how much overlap to have between chunks.\n\n## Templates and examples\n\n**🤖 AI Powered RAG Chatbot for Your Docs + Google Drive + Gemini + Qdrant**\n\nby Joseph LePage\n\n[View template details](https://n8n.io/workflows/2982-ai-powered-rag-chatbot-for-your-docs-google-drive-gemini-qdrant/)\n\n**AI Voice Chatbot with ElevenLabs & OpenAI for Customer Service and Restaurants**\n\nby Davide Boizza\n\n[View template details](https://n8n.io/workflows/2846-ai-voice-chatbot-with-elevenlabs-and-openai-for-customer-service-and-restaurants/)\n\n**Complete business WhatsApp AI-Powered RAG Chatbot using OpenAI**\n\nby Davide Boizza\n\n[View template details](https://n8n.io/workflows/2845-complete-business-whatsapp-ai-powered-rag-chatbot-using-openai/)\n\n[Browse Token Splitter integration templates](https://n8n.io/integrations/token-splitter/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nRefer to [LangChain's token documentation](https://js.langchain.com/docs/concepts/tokens/) and [LangChain's text splitter documentation](https://js.langchain.com/docs/concepts/text_splitters/) for more information about the service.\n\nView n8n's [Advanced AI](../../../../../advanced-ai/) documentation.\n",
48590
- "excerpt": "# Token Splitter node The Token Splitter node splits a raw text string by first converting the text into BPE tokens, then splits these tokens into chunks and converts the tokens within a single chunk back into text. On this page, you'll find the node parameters for the Token Splitter node, and links to more resources. Parameter resolution in sub-nodes Sub-nodes behave differently to other nodes when processing multiple items using an expression. Most nodes, including root nodes, take any nu...",
48591
- "sections": [
48592
- {
48593
- "title": "Token Splitter node",
48594
- "level": 1,
48595
- "content": "The Token Splitter node splits a raw text string by first converting the text into BPE tokens, then splits these tokens into chunks and converts the tokens within a single chunk back into text.\n\nOn this page, you'll find the node parameters for the Token Splitter node, and links to more resources.\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for each item in turn. For example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nIn sub-nodes, the expression always resolves to the first item. For example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name."
48596
- }
48597
- ]
48598
- },
48599
- "metadata": {
48600
- "keywords": [
48601
- "token",
48602
- "splitter",
48603
- "node",
48604
- "parameters",
48605
- "templates",
48606
- "examples",
48607
- "related",
48608
- "resources"
48609
- ],
48610
- "useCases": [],
48611
- "operations": [],
48612
- "codeExamples": 0,
48613
- "complexity": "beginner",
48614
- "readingTime": "2 min",
48615
- "contentLength": 2294,
48616
- "relatedPages": []
48617
- },
48618
- "searchIndex": {
48619
- "fullText": "token splitter # token splitter node\n\nthe token splitter node splits a raw text string by first converting the text into bpe tokens, then splits these tokens into chunks and converts the tokens within a single chunk back into text.\n\non this page, you'll find the node parameters for the token splitter node, and links to more resources.\n\nparameter resolution in sub-nodes\n\nsub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nmost nodes, including root nodes, take any number of items as input, process these items, and output the results. you can use expressions to refer to input items, and the node resolves the expression for each item in turn. for example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nin sub-nodes, the expression always resolves to the first item. for example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\n## node parameters\n\n- **chunk size**: enter the number of characters in each chunk.\n- **chunk overlap**: enter how much overlap to have between chunks.\n\n## templates and examples\n\n**🤖 ai powered rag chatbot for your docs + google drive + gemini + qdrant**\n\nby joseph lepage\n\n[view template details](https://n8n.io/workflows/2982-ai-powered-rag-chatbot-for-your-docs-google-drive-gemini-qdrant/)\n\n**ai voice chatbot with elevenlabs & openai for customer service and restaurants**\n\nby davide boizza\n\n[view template details](https://n8n.io/workflows/2846-ai-voice-chatbot-with-elevenlabs-and-openai-for-customer-service-and-restaurants/)\n\n**complete business whatsapp ai-powered rag chatbot using openai**\n\nby davide boizza\n\n[view template details](https://n8n.io/workflows/2845-complete-business-whatsapp-ai-powered-rag-chatbot-using-openai/)\n\n[browse token splitter integration templates](https://n8n.io/integrations/token-splitter/), or [search all templates](https://n8n.io/workflows/)\n\n## related resources\n\nrefer to [langchain's token documentation](https://js.langchain.com/docs/concepts/tokens/) and [langchain's text splitter documentation](https://js.langchain.com/docs/concepts/text_splitters/) for more information about the service.\n\nview n8n's [advanced ai](../../../../../advanced-ai/) documentation.\n token splitter node",
48620
- "importantTerms": [
48621
- "token",
48622
- "splitter",
48623
- "node",
48624
- "https",
48625
- "nodes",
48626
- "name",
48627
- "chatbot",
48628
- "expression",
48629
- "text",
48630
- "tokens",
48631
- "chunk",
48632
- "items",
48633
- "input",
48634
- "resolves",
48635
- "powered",
48636
- "docs",
48637
- "view",
48638
- "workflows",
48639
- "openai",
48640
- "langchain",
48641
- "first",
48642
- "into",
48643
- "using",
48644
- "each",
48645
- "templates",
48646
- "template",
48647
- "details",
48648
- "service",
48649
- "documentation"
48650
- ]
48651
- }
48652
- },
48653
48707
  {
48654
48708
  "id": "page-0620",
48655
48709
  "title": "Calculator",
@@ -58865,59 +58919,6 @@
58865
58919
  },
58866
58920
  {
58867
58921
  "id": "page-0740",
58868
- "title": "BambooHR credentials",
58869
- "url": "https://docs.n8n.io/integrations/builtin/credentials/bamboohr/index.md",
58870
- "urlPath": "integrations/builtin/credentials/bamboohr/index.md",
58871
- "category": "other",
58872
- "subcategory": null,
58873
- "nodeName": null,
58874
- "nodeType": null,
58875
- "content": {
58876
- "markdown": "# BambooHR credentials\n\nYou can use these credentials to authenticate the following node:\n\n- [BambooHR](../../app-nodes/n8n-nodes-base.bamboohr/)\n\n## Prerequisites\n\nCreate a [BambooHR](https://www.bamboohr.com/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [BambooHR's API documentation](https://documentation.bamboohr.com/docs/getting-started) for more information about the service.\n\n## Using API Key\n\nTo configure this credential, you'll need:\n\n- Your BambooHR **Subdomain**: the part between `https://` and `.bamboohr.com`\n- A BambooHR **API Key**: Refer to the [Authentication section of BambooHR's Getting Started API documentation](https://documentation.bamboohr.com/docs/getting-started#authentication) for instructions on generating an API key.\n",
58877
- "excerpt": "# BambooHR credentials You can use these credentials to authenticate the following node: - [BambooHR](../../app-nodes/n8n-nodes-base.bamboohr/) ## Prerequisites Create a [BambooHR](https://www.bamboohr.com/) account. ## Supported authentication methods - API key ## Related resources Refer to [BambooHR's API documentation](https://documentation.bamboohr.com/docs/getting-started) for more information about the service. ## Using API Key To configure this credential, you'll need: - Your B...",
58878
- "sections": [
58879
- {
58880
- "title": "BambooHR credentials",
58881
- "level": 1,
58882
- "content": "You can use these credentials to authenticate the following node:\n\n- [BambooHR](../../app-nodes/n8n-nodes-base.bamboohr/)"
58883
- }
58884
- ]
58885
- },
58886
- "metadata": {
58887
- "keywords": [
58888
- "bamboohr",
58889
- "credentials",
58890
- "prerequisites",
58891
- "supported",
58892
- "authentication",
58893
- "methods",
58894
- "related",
58895
- "resources",
58896
- "using"
58897
- ],
58898
- "useCases": [],
58899
- "operations": [],
58900
- "codeExamples": 0,
58901
- "complexity": "beginner",
58902
- "readingTime": "1 min",
58903
- "contentLength": 798,
58904
- "relatedPages": []
58905
- },
58906
- "searchIndex": {
58907
- "fullText": "bamboohr credentials # bamboohr credentials\n\nyou can use these credentials to authenticate the following node:\n\n- [bamboohr](../../app-nodes/n8n-nodes-base.bamboohr/)\n\n## prerequisites\n\ncreate a [bamboohr](https://www.bamboohr.com/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [bamboohr's api documentation](https://documentation.bamboohr.com/docs/getting-started) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- your bamboohr **subdomain**: the part between `https://` and `.bamboohr.com`\n- a bamboohr **api key**: refer to the [authentication section of bamboohr's getting started api documentation](https://documentation.bamboohr.com/docs/getting-started#authentication) for instructions on generating an api key.\n bamboohr credentials",
58908
- "importantTerms": [
58909
- "bamboohr",
58910
- "credentials",
58911
- "https",
58912
- "documentation",
58913
- "authentication",
58914
- "getting",
58915
- "started"
58916
- ]
58917
- }
58918
- },
58919
- {
58920
- "id": "page-0741",
58921
58922
  "title": "Azure Storage credentials",
58922
58923
  "url": "https://docs.n8n.io/integrations/builtin/credentials/azurestorage/index.md",
58923
58924
  "urlPath": "integrations/builtin/credentials/azurestorage/index.md",
@@ -59016,6 +59017,59 @@
59016
59017
  ]
59017
59018
  }
59018
59019
  },
59020
+ {
59021
+ "id": "page-0741",
59022
+ "title": "BambooHR credentials",
59023
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/bamboohr/index.md",
59024
+ "urlPath": "integrations/builtin/credentials/bamboohr/index.md",
59025
+ "category": "other",
59026
+ "subcategory": null,
59027
+ "nodeName": null,
59028
+ "nodeType": null,
59029
+ "content": {
59030
+ "markdown": "# BambooHR credentials\n\nYou can use these credentials to authenticate the following node:\n\n- [BambooHR](../../app-nodes/n8n-nodes-base.bamboohr/)\n\n## Prerequisites\n\nCreate a [BambooHR](https://www.bamboohr.com/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [BambooHR's API documentation](https://documentation.bamboohr.com/docs/getting-started) for more information about the service.\n\n## Using API Key\n\nTo configure this credential, you'll need:\n\n- Your BambooHR **Subdomain**: the part between `https://` and `.bamboohr.com`\n- A BambooHR **API Key**: Refer to the [Authentication section of BambooHR's Getting Started API documentation](https://documentation.bamboohr.com/docs/getting-started#authentication) for instructions on generating an API key.\n",
59031
+ "excerpt": "# BambooHR credentials You can use these credentials to authenticate the following node: - [BambooHR](../../app-nodes/n8n-nodes-base.bamboohr/) ## Prerequisites Create a [BambooHR](https://www.bamboohr.com/) account. ## Supported authentication methods - API key ## Related resources Refer to [BambooHR's API documentation](https://documentation.bamboohr.com/docs/getting-started) for more information about the service. ## Using API Key To configure this credential, you'll need: - Your B...",
59032
+ "sections": [
59033
+ {
59034
+ "title": "BambooHR credentials",
59035
+ "level": 1,
59036
+ "content": "You can use these credentials to authenticate the following node:\n\n- [BambooHR](../../app-nodes/n8n-nodes-base.bamboohr/)"
59037
+ }
59038
+ ]
59039
+ },
59040
+ "metadata": {
59041
+ "keywords": [
59042
+ "bamboohr",
59043
+ "credentials",
59044
+ "prerequisites",
59045
+ "supported",
59046
+ "authentication",
59047
+ "methods",
59048
+ "related",
59049
+ "resources",
59050
+ "using"
59051
+ ],
59052
+ "useCases": [],
59053
+ "operations": [],
59054
+ "codeExamples": 0,
59055
+ "complexity": "beginner",
59056
+ "readingTime": "1 min",
59057
+ "contentLength": 798,
59058
+ "relatedPages": []
59059
+ },
59060
+ "searchIndex": {
59061
+ "fullText": "bamboohr credentials # bamboohr credentials\n\nyou can use these credentials to authenticate the following node:\n\n- [bamboohr](../../app-nodes/n8n-nodes-base.bamboohr/)\n\n## prerequisites\n\ncreate a [bamboohr](https://www.bamboohr.com/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [bamboohr's api documentation](https://documentation.bamboohr.com/docs/getting-started) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- your bamboohr **subdomain**: the part between `https://` and `.bamboohr.com`\n- a bamboohr **api key**: refer to the [authentication section of bamboohr's getting started api documentation](https://documentation.bamboohr.com/docs/getting-started#authentication) for instructions on generating an api key.\n bamboohr credentials",
59062
+ "importantTerms": [
59063
+ "bamboohr",
59064
+ "credentials",
59065
+ "https",
59066
+ "documentation",
59067
+ "authentication",
59068
+ "getting",
59069
+ "started"
59070
+ ]
59071
+ }
59072
+ },
59019
59073
  {
59020
59074
  "id": "page-0742",
59021
59075
  "title": "Bannerbear credentials",
@@ -60008,19 +60062,19 @@
60008
60062
  },
60009
60063
  {
60010
60064
  "id": "page-0759",
60011
- "title": "Cisco Umbrella credentials",
60012
- "url": "https://docs.n8n.io/integrations/builtin/credentials/ciscoumbrella/index.md",
60013
- "urlPath": "integrations/builtin/credentials/ciscoumbrella/index.md",
60065
+ "title": "Cisco Secure Endpoint credentials",
60066
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/ciscosecureendpoint/index.md",
60067
+ "urlPath": "integrations/builtin/credentials/ciscosecureendpoint/index.md",
60014
60068
  "category": "other",
60015
60069
  "subcategory": null,
60016
60070
  "nodeName": null,
60017
60071
  "nodeType": null,
60018
60072
  "content": {
60019
- "markdown": "# Cisco Umbrella credentials\n\nYou can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/).\n\n## Prerequisites\n\n- Create a [Cisco DevNet developer account](https://developer.cisco.com).\n- A [Cisco Umbrella user account](https://umbrella.cisco.com/) with **Full Admin** role.\n\n## Authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Cisco Umbrella's API documentation](https://developer.cisco.com/docs/cloud-security/) for more information about the service.\n\nThis is a credential-only node. Refer to [Custom API operations](../../../custom-operations/) to learn more. View [example workflows and related content](https://n8n.io/integrations/cisco-umbrella/) on n8n's website.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**\n- A **Secret**: Provided when you generate an API key\n\nRefer to the [Cisco Umbrella Manage API Keys documentation](https://developer.cisco.com/docs/cloud-security/authentication/#manage-api-keys) for instructions on creating an Umbrella API key.\n",
60020
- "excerpt": "# Cisco Umbrella credentials You can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/). ## Prerequisites - Create a [Cisco DevNet developer account](https://developer.cisco.com). - A [Cisco Umbrella user account](https://umbrella.cisco.com/) with **Full Admin** role. ## Authentication methods - API key ## Related resources Refer to [Cisco Umbrella's API documentati...",
60073
+ "markdown": "# Cisco Secure Endpoint credentials\n\nYou can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/).\n\n## Prerequisites\n\n- Create a [Cisco DevNet developer account](https://developer.cisco.com).\n- Access to a [Cisco Secure Endpoint license](https://www.cisco.com/site/us/en/products/security/endpoint-security/secure-endpoint/index.html).\n\n## Authentication methods\n\n- OAuth2\n\n## Related resources\n\nRefer to [Cisco Secure Endpoint's documentation](https://developer.cisco.com/docs/secure-endpoint/introduction/) for more information about the service.\n\nThis is a credential-only node. Refer to [Custom API operations](../../../custom-operations/) to learn more. View [example workflows and related content](https://n8n.io/integrations/cisco-secure-endpoint/) on n8n's website.\n\n## Using OAuth2\n\nTo configure this credential, you'll need:\n\n- The **Region** for your Cisco Secure Endpoint. Options are:\n - Asia Pacific, Japan, and China\n - Europe\n - North America\n- A **Client ID**: Provided when you register a SecureX API Client\n- A **Client Secret**: Provided when you register a SecureX API Client\n\nTo get a Client ID and Client Secret, you'll need to Register a SecureX API Client. Refer to [Cisco Secure Endpoint's authentication documentation](https://developer.cisco.com/docs/secure-endpoint/authentication/#authentication) for detailed instructions. Use the SecureX **Client Password** as the **Client Secret** within the n8n credential.\n",
60074
+ "excerpt": "# Cisco Secure Endpoint credentials You can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/). ## Prerequisites - Create a [Cisco DevNet developer account](https://developer.cisco.com). - Access to a [Cisco Secure Endpoint license](https://www.cisco.com/site/us/en/products/security/endpoint-security/secure-endpoint/index.html). ## Authentication methods - OAuth2 ##...",
60021
60075
  "sections": [
60022
60076
  {
60023
- "title": "Cisco Umbrella credentials",
60077
+ "title": "Cisco Secure Endpoint credentials",
60024
60078
  "level": 1,
60025
60079
  "content": "You can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/)."
60026
60080
  }
@@ -60029,52 +60083,62 @@
60029
60083
  "metadata": {
60030
60084
  "keywords": [
60031
60085
  "cisco",
60032
- "umbrella",
60086
+ "secure",
60087
+ "endpoint",
60033
60088
  "credentials",
60034
60089
  "prerequisites",
60035
60090
  "authentication",
60036
60091
  "methods",
60037
60092
  "related",
60038
60093
  "resources",
60039
- "using"
60094
+ "using",
60095
+ "oauth2"
60040
60096
  ],
60041
60097
  "useCases": [],
60042
60098
  "operations": [],
60043
60099
  "codeExamples": 0,
60044
60100
  "complexity": "beginner",
60045
60101
  "readingTime": "1 min",
60046
- "contentLength": 1138,
60102
+ "contentLength": 1568,
60047
60103
  "relatedPages": []
60048
60104
  },
60049
60105
  "searchIndex": {
60050
- "fullText": "cisco umbrella credentials # cisco umbrella credentials\n\nyou can use these credentials to authenticate when using the [http request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [custom api call](../../../custom-operations/).\n\n## prerequisites\n\n- create a [cisco devnet developer account](https://developer.cisco.com).\n- a [cisco umbrella user account](https://umbrella.cisco.com/) with **full admin** role.\n\n## authentication methods\n\n- api key\n\n## related resources\n\nrefer to [cisco umbrella's api documentation](https://developer.cisco.com/docs/cloud-security/) for more information about the service.\n\nthis is a credential-only node. refer to [custom api operations](../../../custom-operations/) to learn more. view [example workflows and related content](https://n8n.io/integrations/cisco-umbrella/) on n8n's website.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**\n- a **secret**: provided when you generate an api key\n\nrefer to the [cisco umbrella manage api keys documentation](https://developer.cisco.com/docs/cloud-security/authentication/#manage-api-keys) for instructions on creating an umbrella api key.\n cisco umbrella credentials",
60106
+ "fullText": "cisco secure endpoint credentials # cisco secure endpoint credentials\n\nyou can use these credentials to authenticate when using the [http request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [custom api call](../../../custom-operations/).\n\n## prerequisites\n\n- create a [cisco devnet developer account](https://developer.cisco.com).\n- access to a [cisco secure endpoint license](https://www.cisco.com/site/us/en/products/security/endpoint-security/secure-endpoint/index.html).\n\n## authentication methods\n\n- oauth2\n\n## related resources\n\nrefer to [cisco secure endpoint's documentation](https://developer.cisco.com/docs/secure-endpoint/introduction/) for more information about the service.\n\nthis is a credential-only node. refer to [custom api operations](../../../custom-operations/) to learn more. view [example workflows and related content](https://n8n.io/integrations/cisco-secure-endpoint/) on n8n's website.\n\n## using oauth2\n\nto configure this credential, you'll need:\n\n- the **region** for your cisco secure endpoint. options are:\n - asia pacific, japan, and china\n - europe\n - north america\n- a **client id**: provided when you register a securex api client\n- a **client secret**: provided when you register a securex api client\n\nto get a client id and client secret, you'll need to register a securex api client. refer to [cisco secure endpoint's authentication documentation](https://developer.cisco.com/docs/secure-endpoint/authentication/#authentication) for detailed instructions. use the securex **client password** as the **client secret** within the n8n credential.\n cisco secure endpoint credentials",
60051
60107
  "importantTerms": [
60052
60108
  "cisco",
60053
- "umbrella",
60109
+ "endpoint",
60110
+ "secure",
60111
+ "client",
60054
60112
  "https",
60055
60113
  "credentials",
60056
60114
  "custom",
60057
60115
  "developer",
60116
+ "authentication",
60117
+ "securex",
60118
+ "when",
60058
60119
  "operations",
60059
- "refer"
60120
+ "refer",
60121
+ "credential",
60122
+ "register",
60123
+ "secret"
60060
60124
  ]
60061
60125
  }
60062
60126
  },
60063
60127
  {
60064
60128
  "id": "page-0760",
60065
- "title": "Cisco Secure Endpoint credentials",
60066
- "url": "https://docs.n8n.io/integrations/builtin/credentials/ciscosecureendpoint/index.md",
60067
- "urlPath": "integrations/builtin/credentials/ciscosecureendpoint/index.md",
60129
+ "title": "Cisco Umbrella credentials",
60130
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/ciscoumbrella/index.md",
60131
+ "urlPath": "integrations/builtin/credentials/ciscoumbrella/index.md",
60068
60132
  "category": "other",
60069
60133
  "subcategory": null,
60070
60134
  "nodeName": null,
60071
60135
  "nodeType": null,
60072
60136
  "content": {
60073
- "markdown": "# Cisco Secure Endpoint credentials\n\nYou can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/).\n\n## Prerequisites\n\n- Create a [Cisco DevNet developer account](https://developer.cisco.com).\n- Access to a [Cisco Secure Endpoint license](https://www.cisco.com/site/us/en/products/security/endpoint-security/secure-endpoint/index.html).\n\n## Authentication methods\n\n- OAuth2\n\n## Related resources\n\nRefer to [Cisco Secure Endpoint's documentation](https://developer.cisco.com/docs/secure-endpoint/introduction/) for more information about the service.\n\nThis is a credential-only node. Refer to [Custom API operations](../../../custom-operations/) to learn more. View [example workflows and related content](https://n8n.io/integrations/cisco-secure-endpoint/) on n8n's website.\n\n## Using OAuth2\n\nTo configure this credential, you'll need:\n\n- The **Region** for your Cisco Secure Endpoint. Options are:\n - Asia Pacific, Japan, and China\n - Europe\n - North America\n- A **Client ID**: Provided when you register a SecureX API Client\n- A **Client Secret**: Provided when you register a SecureX API Client\n\nTo get a Client ID and Client Secret, you'll need to Register a SecureX API Client. Refer to [Cisco Secure Endpoint's authentication documentation](https://developer.cisco.com/docs/secure-endpoint/authentication/#authentication) for detailed instructions. Use the SecureX **Client Password** as the **Client Secret** within the n8n credential.\n",
60074
- "excerpt": "# Cisco Secure Endpoint credentials You can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/). ## Prerequisites - Create a [Cisco DevNet developer account](https://developer.cisco.com). - Access to a [Cisco Secure Endpoint license](https://www.cisco.com/site/us/en/products/security/endpoint-security/secure-endpoint/index.html). ## Authentication methods - OAuth2 ##...",
60137
+ "markdown": "# Cisco Umbrella credentials\n\nYou can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/).\n\n## Prerequisites\n\n- Create a [Cisco DevNet developer account](https://developer.cisco.com).\n- A [Cisco Umbrella user account](https://umbrella.cisco.com/) with **Full Admin** role.\n\n## Authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Cisco Umbrella's API documentation](https://developer.cisco.com/docs/cloud-security/) for more information about the service.\n\nThis is a credential-only node. Refer to [Custom API operations](../../../custom-operations/) to learn more. View [example workflows and related content](https://n8n.io/integrations/cisco-umbrella/) on n8n's website.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**\n- A **Secret**: Provided when you generate an API key\n\nRefer to the [Cisco Umbrella Manage API Keys documentation](https://developer.cisco.com/docs/cloud-security/authentication/#manage-api-keys) for instructions on creating an Umbrella API key.\n",
60138
+ "excerpt": "# Cisco Umbrella credentials You can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/). ## Prerequisites - Create a [Cisco DevNet developer account](https://developer.cisco.com). - A [Cisco Umbrella user account](https://umbrella.cisco.com/) with **Full Admin** role. ## Authentication methods - API key ## Related resources Refer to [Cisco Umbrella's API documentati...",
60075
60139
  "sections": [
60076
60140
  {
60077
- "title": "Cisco Secure Endpoint credentials",
60141
+ "title": "Cisco Umbrella credentials",
60078
60142
  "level": 1,
60079
60143
  "content": "You can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/)."
60080
60144
  }
@@ -60083,44 +60147,34 @@
60083
60147
  "metadata": {
60084
60148
  "keywords": [
60085
60149
  "cisco",
60086
- "secure",
60087
- "endpoint",
60150
+ "umbrella",
60088
60151
  "credentials",
60089
60152
  "prerequisites",
60090
60153
  "authentication",
60091
60154
  "methods",
60092
60155
  "related",
60093
60156
  "resources",
60094
- "using",
60095
- "oauth2"
60157
+ "using"
60096
60158
  ],
60097
60159
  "useCases": [],
60098
60160
  "operations": [],
60099
60161
  "codeExamples": 0,
60100
60162
  "complexity": "beginner",
60101
60163
  "readingTime": "1 min",
60102
- "contentLength": 1568,
60164
+ "contentLength": 1138,
60103
60165
  "relatedPages": []
60104
60166
  },
60105
60167
  "searchIndex": {
60106
- "fullText": "cisco secure endpoint credentials # cisco secure endpoint credentials\n\nyou can use these credentials to authenticate when using the [http request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [custom api call](../../../custom-operations/).\n\n## prerequisites\n\n- create a [cisco devnet developer account](https://developer.cisco.com).\n- access to a [cisco secure endpoint license](https://www.cisco.com/site/us/en/products/security/endpoint-security/secure-endpoint/index.html).\n\n## authentication methods\n\n- oauth2\n\n## related resources\n\nrefer to [cisco secure endpoint's documentation](https://developer.cisco.com/docs/secure-endpoint/introduction/) for more information about the service.\n\nthis is a credential-only node. refer to [custom api operations](../../../custom-operations/) to learn more. view [example workflows and related content](https://n8n.io/integrations/cisco-secure-endpoint/) on n8n's website.\n\n## using oauth2\n\nto configure this credential, you'll need:\n\n- the **region** for your cisco secure endpoint. options are:\n - asia pacific, japan, and china\n - europe\n - north america\n- a **client id**: provided when you register a securex api client\n- a **client secret**: provided when you register a securex api client\n\nto get a client id and client secret, you'll need to register a securex api client. refer to [cisco secure endpoint's authentication documentation](https://developer.cisco.com/docs/secure-endpoint/authentication/#authentication) for detailed instructions. use the securex **client password** as the **client secret** within the n8n credential.\n cisco secure endpoint credentials",
60168
+ "fullText": "cisco umbrella credentials # cisco umbrella credentials\n\nyou can use these credentials to authenticate when using the [http request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [custom api call](../../../custom-operations/).\n\n## prerequisites\n\n- create a [cisco devnet developer account](https://developer.cisco.com).\n- a [cisco umbrella user account](https://umbrella.cisco.com/) with **full admin** role.\n\n## authentication methods\n\n- api key\n\n## related resources\n\nrefer to [cisco umbrella's api documentation](https://developer.cisco.com/docs/cloud-security/) for more information about the service.\n\nthis is a credential-only node. refer to [custom api operations](../../../custom-operations/) to learn more. view [example workflows and related content](https://n8n.io/integrations/cisco-umbrella/) on n8n's website.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**\n- a **secret**: provided when you generate an api key\n\nrefer to the [cisco umbrella manage api keys documentation](https://developer.cisco.com/docs/cloud-security/authentication/#manage-api-keys) for instructions on creating an umbrella api key.\n cisco umbrella credentials",
60107
60169
  "importantTerms": [
60108
60170
  "cisco",
60109
- "endpoint",
60110
- "secure",
60111
- "client",
60171
+ "umbrella",
60112
60172
  "https",
60113
60173
  "credentials",
60114
60174
  "custom",
60115
60175
  "developer",
60116
- "authentication",
60117
- "securex",
60118
- "when",
60119
60176
  "operations",
60120
- "refer",
60121
- "credential",
60122
- "register",
60123
- "secret"
60177
+ "refer"
60124
60178
  ]
60125
60179
  }
60126
60180
  },
@@ -62086,56 +62140,6 @@
62086
62140
  },
62087
62141
  {
62088
62142
  "id": "page-0794",
62089
- "title": "Emelia credentials",
62090
- "url": "https://docs.n8n.io/integrations/builtin/credentials/emelia/index.md",
62091
- "urlPath": "integrations/builtin/credentials/emelia/index.md",
62092
- "category": "other",
62093
- "subcategory": null,
62094
- "nodeName": null,
62095
- "nodeType": null,
62096
- "content": {
62097
- "markdown": "# Emelia credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Emelia](../../app-nodes/n8n-nodes-base.emelia/)\n- [Emelia Trigger](../../trigger-nodes/n8n-nodes-base.emeliatrigger/)\n\n## Prerequisites\n\nCreate an [Emelia](https://emelia.io) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Emelia's API documentation](https://docs.emelia.io/) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**: To generate an API Key in Emelia, access your **API Keys** by selecting the avatar in the top right (your **Settings**). Refer to the Authentication section of [Emelia's API documentation](https://docs.emelia.io/) for more information.\n",
62098
- "excerpt": "# Emelia credentials You can use these credentials to authenticate the following nodes: - [Emelia](../../app-nodes/n8n-nodes-base.emelia/) - [Emelia Trigger](../../trigger-nodes/n8n-nodes-base.emeliatrigger/) ## Prerequisites Create an [Emelia](https://emelia.io) account. ## Supported authentication methods - API key ## Related resources Refer to [Emelia's API documentation](https://docs.emelia.io/) for more information about the service. ## Using API key To configure this credential,...",
62099
- "sections": [
62100
- {
62101
- "title": "Emelia credentials",
62102
- "level": 1,
62103
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [Emelia](../../app-nodes/n8n-nodes-base.emelia/)\n- [Emelia Trigger](../../trigger-nodes/n8n-nodes-base.emeliatrigger/)"
62104
- }
62105
- ]
62106
- },
62107
- "metadata": {
62108
- "keywords": [
62109
- "emelia",
62110
- "credentials",
62111
- "prerequisites",
62112
- "supported",
62113
- "authentication",
62114
- "methods",
62115
- "related",
62116
- "resources",
62117
- "using"
62118
- ],
62119
- "useCases": [],
62120
- "operations": [],
62121
- "codeExamples": 0,
62122
- "complexity": "beginner",
62123
- "readingTime": "1 min",
62124
- "contentLength": 768,
62125
- "relatedPages": []
62126
- },
62127
- "searchIndex": {
62128
- "fullText": "emelia credentials # emelia credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [emelia](../../app-nodes/n8n-nodes-base.emelia/)\n- [emelia trigger](../../trigger-nodes/n8n-nodes-base.emeliatrigger/)\n\n## prerequisites\n\ncreate an [emelia](https://emelia.io) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [emelia's api documentation](https://docs.emelia.io/) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**: to generate an api key in emelia, access your **api keys** by selecting the avatar in the top right (your **settings**). refer to the authentication section of [emelia's api documentation](https://docs.emelia.io/) for more information.\n emelia credentials",
62129
- "importantTerms": [
62130
- "emelia",
62131
- "nodes",
62132
- "credentials",
62133
- "https"
62134
- ]
62135
- }
62136
- },
62137
- {
62138
- "id": "page-0795",
62139
62143
  "title": "Elastic Security credentials",
62140
62144
  "url": "https://docs.n8n.io/integrations/builtin/credentials/elasticsecurity/index.md",
62141
62145
  "urlPath": "integrations/builtin/credentials/elasticsecurity/index.md",
@@ -62204,6 +62208,56 @@
62204
62208
  ]
62205
62209
  }
62206
62210
  },
62211
+ {
62212
+ "id": "page-0795",
62213
+ "title": "Emelia credentials",
62214
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/emelia/index.md",
62215
+ "urlPath": "integrations/builtin/credentials/emelia/index.md",
62216
+ "category": "other",
62217
+ "subcategory": null,
62218
+ "nodeName": null,
62219
+ "nodeType": null,
62220
+ "content": {
62221
+ "markdown": "# Emelia credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Emelia](../../app-nodes/n8n-nodes-base.emelia/)\n- [Emelia Trigger](../../trigger-nodes/n8n-nodes-base.emeliatrigger/)\n\n## Prerequisites\n\nCreate an [Emelia](https://emelia.io) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Emelia's API documentation](https://docs.emelia.io/) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**: To generate an API Key in Emelia, access your **API Keys** by selecting the avatar in the top right (your **Settings**). Refer to the Authentication section of [Emelia's API documentation](https://docs.emelia.io/) for more information.\n",
62222
+ "excerpt": "# Emelia credentials You can use these credentials to authenticate the following nodes: - [Emelia](../../app-nodes/n8n-nodes-base.emelia/) - [Emelia Trigger](../../trigger-nodes/n8n-nodes-base.emeliatrigger/) ## Prerequisites Create an [Emelia](https://emelia.io) account. ## Supported authentication methods - API key ## Related resources Refer to [Emelia's API documentation](https://docs.emelia.io/) for more information about the service. ## Using API key To configure this credential,...",
62223
+ "sections": [
62224
+ {
62225
+ "title": "Emelia credentials",
62226
+ "level": 1,
62227
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [Emelia](../../app-nodes/n8n-nodes-base.emelia/)\n- [Emelia Trigger](../../trigger-nodes/n8n-nodes-base.emeliatrigger/)"
62228
+ }
62229
+ ]
62230
+ },
62231
+ "metadata": {
62232
+ "keywords": [
62233
+ "emelia",
62234
+ "credentials",
62235
+ "prerequisites",
62236
+ "supported",
62237
+ "authentication",
62238
+ "methods",
62239
+ "related",
62240
+ "resources",
62241
+ "using"
62242
+ ],
62243
+ "useCases": [],
62244
+ "operations": [],
62245
+ "codeExamples": 0,
62246
+ "complexity": "beginner",
62247
+ "readingTime": "1 min",
62248
+ "contentLength": 768,
62249
+ "relatedPages": []
62250
+ },
62251
+ "searchIndex": {
62252
+ "fullText": "emelia credentials # emelia credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [emelia](../../app-nodes/n8n-nodes-base.emelia/)\n- [emelia trigger](../../trigger-nodes/n8n-nodes-base.emeliatrigger/)\n\n## prerequisites\n\ncreate an [emelia](https://emelia.io) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [emelia's api documentation](https://docs.emelia.io/) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**: to generate an api key in emelia, access your **api keys** by selecting the avatar in the top right (your **settings**). refer to the authentication section of [emelia's api documentation](https://docs.emelia.io/) for more information.\n emelia credentials",
62253
+ "importantTerms": [
62254
+ "emelia",
62255
+ "nodes",
62256
+ "credentials",
62257
+ "https"
62258
+ ]
62259
+ }
62260
+ },
62207
62261
  {
62208
62262
  "id": "page-0796",
62209
62263
  "title": "ERPNext credentials",
@@ -63037,27 +63091,28 @@
63037
63091
  },
63038
63092
  {
63039
63093
  "id": "page-0808",
63040
- "title": "Freshdesk credentials",
63041
- "url": "https://docs.n8n.io/integrations/builtin/credentials/freshdesk/index.md",
63042
- "urlPath": "integrations/builtin/credentials/freshdesk/index.md",
63094
+ "title": "Fortinet FortiGate credentials",
63095
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/fortigate/index.md",
63096
+ "urlPath": "integrations/builtin/credentials/fortigate/index.md",
63043
63097
  "category": "other",
63044
63098
  "subcategory": null,
63045
63099
  "nodeName": null,
63046
63100
  "nodeType": null,
63047
63101
  "content": {
63048
- "markdown": "# Freshdesk credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Freshdesk](../../app-nodes/n8n-nodes-base.freshdesk/)\n\n## Prerequisites\n\nCreate a [Freshdesk](https://freshdesk.com/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Freshdesk's API documentation](https://developers.freshdesk.com/api/) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**: Refer to the [Freshdesk API authenticaton documentation](https://developers.freshdesk.com/api/#authentication) for detailed instructions on getting your API key.\n- A Freshdesk **Domain**: Use the subdomain of your Freshdesk account. This is part of the URL, for example `https://<subdomain>.freshdesk.com`. So if you access Freshdesk through `https://n8n.freshdesk.com`, enter `n8n` as your **Domain**.\n",
63049
- "excerpt": "# Freshdesk credentials You can use these credentials to authenticate the following nodes: - [Freshdesk](../../app-nodes/n8n-nodes-base.freshdesk/) ## Prerequisites Create a [Freshdesk](https://freshdesk.com/) account. ## Supported authentication methods - API key ## Related resources Refer to [Freshdesk's API documentation](https://developers.freshdesk.com/api/) for more information about the service. ## Using API key To configure this credential, you'll need: - An **API Key**: Refer...",
63102
+ "markdown": "# Fortinet FortiGate credentials\n\nYou can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/).\n\n## Prerequisites\n\nCreate a [Fortinet FortiGate](https://www.fortinet.com/) account.\n\n## Supported authentication methods\n\n- API access token\n\n## Related resources\n\nRefer to [Fortinet FortiGate's API documentation](https://docs.fortinet.com/document/fortigate/7.4.3/administration-guide/940602/using-apis) for more information about the service.\n\nThis is a credential-only node. Refer to [Custom API operations](../../../custom-operations/) to learn more. View [example workflows and related content](https://n8n.io/integrations/fortinet-fortigate/) on n8n's website.\n\n## Using API access token\n\nTo configure this credential, you'll need:\n\n- An API **Access Token**: To generate an access token, create a [REST API administrator](https://docs.fortinet.com/document/fortigate/7.4.3/administration-guide/399023/rest-api-administrator).\n\nRefer to the [Fortinet FortiGate Using APIs documentation](https://docs.fortinet.com/document/fortigate/7.4.3/administration-guide/940602/using-apis) for more information about token-based authentication in FortiGate.\n",
63103
+ "excerpt": "# Fortinet FortiGate credentials You can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/). ## Prerequisites Create a [Fortinet FortiGate](https://www.fortinet.com/) account. ## Supported authentication methods - API access token ## Related resources Refer to [Fortinet FortiGate's API documentation](https://docs.fortinet.com/document/fortigate/7.4.3/administration-...",
63050
63104
  "sections": [
63051
63105
  {
63052
- "title": "Freshdesk credentials",
63106
+ "title": "Fortinet FortiGate credentials",
63053
63107
  "level": 1,
63054
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [Freshdesk](../../app-nodes/n8n-nodes-base.freshdesk/)"
63108
+ "content": "You can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/)."
63055
63109
  }
63056
63110
  ]
63057
63111
  },
63058
63112
  "metadata": {
63059
63113
  "keywords": [
63060
- "freshdesk",
63114
+ "fortinet",
63115
+ "fortigate",
63061
63116
  "credentials",
63062
63117
  "prerequisites",
63063
63118
  "supported",
@@ -63065,51 +63120,63 @@
63065
63120
  "methods",
63066
63121
  "related",
63067
63122
  "resources",
63068
- "using"
63123
+ "using",
63124
+ "access",
63125
+ "token"
63069
63126
  ],
63070
63127
  "useCases": [],
63071
63128
  "operations": [],
63072
63129
  "codeExamples": 0,
63073
63130
  "complexity": "beginner",
63074
63131
  "readingTime": "1 min",
63075
- "contentLength": 898,
63132
+ "contentLength": 1272,
63076
63133
  "relatedPages": []
63077
63134
  },
63078
63135
  "searchIndex": {
63079
- "fullText": "freshdesk credentials # freshdesk credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [freshdesk](../../app-nodes/n8n-nodes-base.freshdesk/)\n\n## prerequisites\n\ncreate a [freshdesk](https://freshdesk.com/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [freshdesk's api documentation](https://developers.freshdesk.com/api/) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**: refer to the [freshdesk api authenticaton documentation](https://developers.freshdesk.com/api/#authentication) for detailed instructions on getting your api key.\n- a freshdesk **domain**: use the subdomain of your freshdesk account. this is part of the url, for example `https://<subdomain>.freshdesk.com`. so if you access freshdesk through `https://n8n.freshdesk.com`, enter `n8n` as your **domain**.\n freshdesk credentials",
63136
+ "fullText": "fortinet fortigate credentials # fortinet fortigate credentials\n\nyou can use these credentials to authenticate when using the [http request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [custom api call](../../../custom-operations/).\n\n## prerequisites\n\ncreate a [fortinet fortigate](https://www.fortinet.com/) account.\n\n## supported authentication methods\n\n- api access token\n\n## related resources\n\nrefer to [fortinet fortigate's api documentation](https://docs.fortinet.com/document/fortigate/7.4.3/administration-guide/940602/using-apis) for more information about the service.\n\nthis is a credential-only node. refer to [custom api operations](../../../custom-operations/) to learn more. view [example workflows and related content](https://n8n.io/integrations/fortinet-fortigate/) on n8n's website.\n\n## using api access token\n\nto configure this credential, you'll need:\n\n- an api **access token**: to generate an access token, create a [rest api administrator](https://docs.fortinet.com/document/fortigate/7.4.3/administration-guide/399023/rest-api-administrator).\n\nrefer to the [fortinet fortigate using apis documentation](https://docs.fortinet.com/document/fortigate/7.4.3/administration-guide/940602/using-apis) for more information about token-based authentication in fortigate.\n fortinet fortigate credentials",
63080
63137
  "importantTerms": [
63081
- "freshdesk",
63138
+ "fortinet",
63139
+ "fortigate",
63140
+ "using",
63082
63141
  "https",
63142
+ "token",
63083
63143
  "credentials",
63084
- "nodes",
63085
- "your"
63144
+ "custom",
63145
+ "access",
63146
+ "operations",
63147
+ "refer",
63148
+ "docs",
63149
+ "document",
63150
+ "administration",
63151
+ "guide",
63152
+ "apis",
63153
+ "more"
63086
63154
  ]
63087
63155
  }
63088
63156
  },
63089
63157
  {
63090
63158
  "id": "page-0809",
63091
- "title": "Fortinet FortiGate credentials",
63092
- "url": "https://docs.n8n.io/integrations/builtin/credentials/fortigate/index.md",
63093
- "urlPath": "integrations/builtin/credentials/fortigate/index.md",
63159
+ "title": "Freshdesk credentials",
63160
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/freshdesk/index.md",
63161
+ "urlPath": "integrations/builtin/credentials/freshdesk/index.md",
63094
63162
  "category": "other",
63095
63163
  "subcategory": null,
63096
63164
  "nodeName": null,
63097
63165
  "nodeType": null,
63098
63166
  "content": {
63099
- "markdown": "# Fortinet FortiGate credentials\n\nYou can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/).\n\n## Prerequisites\n\nCreate a [Fortinet FortiGate](https://www.fortinet.com/) account.\n\n## Supported authentication methods\n\n- API access token\n\n## Related resources\n\nRefer to [Fortinet FortiGate's API documentation](https://docs.fortinet.com/document/fortigate/7.4.3/administration-guide/940602/using-apis) for more information about the service.\n\nThis is a credential-only node. Refer to [Custom API operations](../../../custom-operations/) to learn more. View [example workflows and related content](https://n8n.io/integrations/fortinet-fortigate/) on n8n's website.\n\n## Using API access token\n\nTo configure this credential, you'll need:\n\n- An API **Access Token**: To generate an access token, create a [REST API administrator](https://docs.fortinet.com/document/fortigate/7.4.3/administration-guide/399023/rest-api-administrator).\n\nRefer to the [Fortinet FortiGate Using APIs documentation](https://docs.fortinet.com/document/fortigate/7.4.3/administration-guide/940602/using-apis) for more information about token-based authentication in FortiGate.\n",
63100
- "excerpt": "# Fortinet FortiGate credentials You can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/). ## Prerequisites Create a [Fortinet FortiGate](https://www.fortinet.com/) account. ## Supported authentication methods - API access token ## Related resources Refer to [Fortinet FortiGate's API documentation](https://docs.fortinet.com/document/fortigate/7.4.3/administration-...",
63167
+ "markdown": "# Freshdesk credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Freshdesk](../../app-nodes/n8n-nodes-base.freshdesk/)\n\n## Prerequisites\n\nCreate a [Freshdesk](https://freshdesk.com/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Freshdesk's API documentation](https://developers.freshdesk.com/api/) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**: Refer to the [Freshdesk API authenticaton documentation](https://developers.freshdesk.com/api/#authentication) for detailed instructions on getting your API key.\n- A Freshdesk **Domain**: Use the subdomain of your Freshdesk account. This is part of the URL, for example `https://<subdomain>.freshdesk.com`. So if you access Freshdesk through `https://n8n.freshdesk.com`, enter `n8n` as your **Domain**.\n",
63168
+ "excerpt": "# Freshdesk credentials You can use these credentials to authenticate the following nodes: - [Freshdesk](../../app-nodes/n8n-nodes-base.freshdesk/) ## Prerequisites Create a [Freshdesk](https://freshdesk.com/) account. ## Supported authentication methods - API key ## Related resources Refer to [Freshdesk's API documentation](https://developers.freshdesk.com/api/) for more information about the service. ## Using API key To configure this credential, you'll need: - An **API Key**: Refer...",
63101
63169
  "sections": [
63102
63170
  {
63103
- "title": "Fortinet FortiGate credentials",
63171
+ "title": "Freshdesk credentials",
63104
63172
  "level": 1,
63105
- "content": "You can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/)."
63173
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [Freshdesk](../../app-nodes/n8n-nodes-base.freshdesk/)"
63106
63174
  }
63107
63175
  ]
63108
63176
  },
63109
63177
  "metadata": {
63110
63178
  "keywords": [
63111
- "fortinet",
63112
- "fortigate",
63179
+ "freshdesk",
63113
63180
  "credentials",
63114
63181
  "prerequisites",
63115
63182
  "supported",
@@ -63117,37 +63184,24 @@
63117
63184
  "methods",
63118
63185
  "related",
63119
63186
  "resources",
63120
- "using",
63121
- "access",
63122
- "token"
63187
+ "using"
63123
63188
  ],
63124
63189
  "useCases": [],
63125
63190
  "operations": [],
63126
63191
  "codeExamples": 0,
63127
63192
  "complexity": "beginner",
63128
63193
  "readingTime": "1 min",
63129
- "contentLength": 1272,
63194
+ "contentLength": 898,
63130
63195
  "relatedPages": []
63131
63196
  },
63132
63197
  "searchIndex": {
63133
- "fullText": "fortinet fortigate credentials # fortinet fortigate credentials\n\nyou can use these credentials to authenticate when using the [http request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [custom api call](../../../custom-operations/).\n\n## prerequisites\n\ncreate a [fortinet fortigate](https://www.fortinet.com/) account.\n\n## supported authentication methods\n\n- api access token\n\n## related resources\n\nrefer to [fortinet fortigate's api documentation](https://docs.fortinet.com/document/fortigate/7.4.3/administration-guide/940602/using-apis) for more information about the service.\n\nthis is a credential-only node. refer to [custom api operations](../../../custom-operations/) to learn more. view [example workflows and related content](https://n8n.io/integrations/fortinet-fortigate/) on n8n's website.\n\n## using api access token\n\nto configure this credential, you'll need:\n\n- an api **access token**: to generate an access token, create a [rest api administrator](https://docs.fortinet.com/document/fortigate/7.4.3/administration-guide/399023/rest-api-administrator).\n\nrefer to the [fortinet fortigate using apis documentation](https://docs.fortinet.com/document/fortigate/7.4.3/administration-guide/940602/using-apis) for more information about token-based authentication in fortigate.\n fortinet fortigate credentials",
63198
+ "fullText": "freshdesk credentials # freshdesk credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [freshdesk](../../app-nodes/n8n-nodes-base.freshdesk/)\n\n## prerequisites\n\ncreate a [freshdesk](https://freshdesk.com/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [freshdesk's api documentation](https://developers.freshdesk.com/api/) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**: refer to the [freshdesk api authenticaton documentation](https://developers.freshdesk.com/api/#authentication) for detailed instructions on getting your api key.\n- a freshdesk **domain**: use the subdomain of your freshdesk account. this is part of the url, for example `https://<subdomain>.freshdesk.com`. so if you access freshdesk through `https://n8n.freshdesk.com`, enter `n8n` as your **domain**.\n freshdesk credentials",
63134
63199
  "importantTerms": [
63135
- "fortinet",
63136
- "fortigate",
63137
- "using",
63200
+ "freshdesk",
63138
63201
  "https",
63139
- "token",
63140
63202
  "credentials",
63141
- "custom",
63142
- "access",
63143
- "operations",
63144
- "refer",
63145
- "docs",
63146
- "document",
63147
- "administration",
63148
- "guide",
63149
- "apis",
63150
- "more"
63203
+ "nodes",
63204
+ "your"
63151
63205
  ]
63152
63206
  }
63153
63207
  },
@@ -63872,115 +63926,115 @@
63872
63926
  },
63873
63927
  {
63874
63928
  "id": "page-0821",
63875
- "title": "Grafana credentials",
63876
- "url": "https://docs.n8n.io/integrations/builtin/credentials/grafana/index.md",
63877
- "urlPath": "integrations/builtin/credentials/grafana/index.md",
63929
+ "title": "GoToWebinar credentials",
63930
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/gotowebinar/index.md",
63931
+ "urlPath": "integrations/builtin/credentials/gotowebinar/index.md",
63878
63932
  "category": "other",
63879
63933
  "subcategory": null,
63880
63934
  "nodeName": null,
63881
63935
  "nodeType": null,
63882
63936
  "content": {
63883
- "markdown": "# Grafana credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Grafana](../../app-nodes/n8n-nodes-base.grafana/)\n\n## Prerequisites\n\n- Create a [Grafana](https://grafana.com/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Grafana's API documentation](https://grafana.com/docs/grafana/latest/developers/http_api/) for more information about authenticating with the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**: Refer to the [Create an API key documentation](https://grafana.com/docs/grafana/latest/administration/api-keys/#create-an-api-key) for detailed instructions on creating an API key.\n- The **Base URL** for your Grafana instance, for example: `https://n8n.grafana.net`.\n",
63884
- "excerpt": "# Grafana credentials You can use these credentials to authenticate the following nodes: - [Grafana](../../app-nodes/n8n-nodes-base.grafana/) ## Prerequisites - Create a [Grafana](https://grafana.com/) account. ## Supported authentication methods - API key ## Related resources Refer to [Grafana's API documentation](https://grafana.com/docs/grafana/latest/developers/http_api/) for more information about authenticating with the service. ## Using API key To configure this credential, you'...",
63937
+ "markdown": "# GoTo Webinar credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [GoToWebinar](../../app-nodes/n8n-nodes-base.gotowebinar/)\n\n## Prerequisites\n\nCreate a [GoToWebinar](https://www.goto.com/webinar) account with [Developer Center](https://developer.goto.com/) access.\n\n## Supported authentication methods\n\n- OAuth2\n\n## Related resources\n\nRefer to [GoToWebinar's API documentation](https://developer.goto.com/GoToWebinarV2) for more information about authenticating with the service.\n\n## Using OAuth2\n\nTo configure this credential, you'll need:\n\n- A **Client ID**: Provided once you create an OAuth client\n- A **Client Secret**: Provided once you create an OAuth client\n\nRefer to the [Create an OAuth client documentation](https://developer.goto.com/guides/Get%20Started/02_HOW_createClient/) for detailed instructions on creating an OAuth client. Copy the **OAuth Callback URL** from n8n to use as the **Redirect URI** in your OAuth client. The Client ID and Client secret are provided once you've finished setting up your client.\n",
63938
+ "excerpt": "# GoTo Webinar credentials You can use these credentials to authenticate the following nodes: - [GoToWebinar](../../app-nodes/n8n-nodes-base.gotowebinar/) ## Prerequisites Create a [GoToWebinar](https://www.goto.com/webinar) account with [Developer Center](https://developer.goto.com/) access. ## Supported authentication methods - OAuth2 ## Related resources Refer to [GoToWebinar's API documentation](https://developer.goto.com/GoToWebinarV2) for more information about authenticating with...",
63885
63939
  "sections": [
63886
63940
  {
63887
- "title": "Grafana credentials",
63941
+ "title": "GoTo Webinar credentials",
63888
63942
  "level": 1,
63889
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [Grafana](../../app-nodes/n8n-nodes-base.grafana/)"
63943
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [GoToWebinar](../../app-nodes/n8n-nodes-base.gotowebinar/)"
63890
63944
  }
63891
63945
  ]
63892
63946
  },
63893
63947
  "metadata": {
63894
63948
  "keywords": [
63895
- "grafana",
63949
+ "gotowebinar",
63896
63950
  "credentials",
63951
+ "goto",
63952
+ "webinar",
63897
63953
  "prerequisites",
63898
63954
  "supported",
63899
63955
  "authentication",
63900
63956
  "methods",
63901
63957
  "related",
63902
63958
  "resources",
63903
- "using"
63904
- ],
63905
- "useCases": [
63906
- "`https://n8n.grafana.net`."
63959
+ "using",
63960
+ "oauth2"
63907
63961
  ],
63962
+ "useCases": [],
63908
63963
  "operations": [],
63909
63964
  "codeExamples": 0,
63910
63965
  "complexity": "beginner",
63911
63966
  "readingTime": "1 min",
63912
- "contentLength": 795,
63967
+ "contentLength": 1061,
63913
63968
  "relatedPages": []
63914
63969
  },
63915
63970
  "searchIndex": {
63916
- "fullText": "grafana credentials # grafana credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [grafana](../../app-nodes/n8n-nodes-base.grafana/)\n\n## prerequisites\n\n- create a [grafana](https://grafana.com/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [grafana's api documentation](https://grafana.com/docs/grafana/latest/developers/http_api/) for more information about authenticating with the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**: refer to the [create an api key documentation](https://grafana.com/docs/grafana/latest/administration/api-keys/#create-an-api-key) for detailed instructions on creating an api key.\n- the **base url** for your grafana instance, for example: `https://n8n.grafana.net`.\n grafana credentials",
63971
+ "fullText": "gotowebinar credentials # goto webinar credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [gotowebinar](../../app-nodes/n8n-nodes-base.gotowebinar/)\n\n## prerequisites\n\ncreate a [gotowebinar](https://www.goto.com/webinar) account with [developer center](https://developer.goto.com/) access.\n\n## supported authentication methods\n\n- oauth2\n\n## related resources\n\nrefer to [gotowebinar's api documentation](https://developer.goto.com/gotowebinarv2) for more information about authenticating with the service.\n\n## using oauth2\n\nto configure this credential, you'll need:\n\n- a **client id**: provided once you create an oauth client\n- a **client secret**: provided once you create an oauth client\n\nrefer to the [create an oauth client documentation](https://developer.goto.com/guides/get%20started/02_how_createclient/) for detailed instructions on creating an oauth client. copy the **oauth callback url** from n8n to use as the **redirect uri** in your oauth client. the client id and client secret are provided once you've finished setting up your client.\n goto webinar credentials",
63917
63972
  "importantTerms": [
63918
- "grafana",
63973
+ "client",
63974
+ "goto",
63975
+ "oauth",
63976
+ "gotowebinar",
63919
63977
  "credentials",
63978
+ "create",
63920
63979
  "https",
63980
+ "developer",
63981
+ "webinar",
63921
63982
  "nodes",
63922
- "create"
63983
+ "provided",
63984
+ "once"
63923
63985
  ]
63924
63986
  }
63925
63987
  },
63926
63988
  {
63927
63989
  "id": "page-0822",
63928
- "title": "GoToWebinar credentials",
63929
- "url": "https://docs.n8n.io/integrations/builtin/credentials/gotowebinar/index.md",
63930
- "urlPath": "integrations/builtin/credentials/gotowebinar/index.md",
63990
+ "title": "Grafana credentials",
63991
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/grafana/index.md",
63992
+ "urlPath": "integrations/builtin/credentials/grafana/index.md",
63931
63993
  "category": "other",
63932
63994
  "subcategory": null,
63933
63995
  "nodeName": null,
63934
63996
  "nodeType": null,
63935
63997
  "content": {
63936
- "markdown": "# GoTo Webinar credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [GoToWebinar](../../app-nodes/n8n-nodes-base.gotowebinar/)\n\n## Prerequisites\n\nCreate a [GoToWebinar](https://www.goto.com/webinar) account with [Developer Center](https://developer.goto.com/) access.\n\n## Supported authentication methods\n\n- OAuth2\n\n## Related resources\n\nRefer to [GoToWebinar's API documentation](https://developer.goto.com/GoToWebinarV2) for more information about authenticating with the service.\n\n## Using OAuth2\n\nTo configure this credential, you'll need:\n\n- A **Client ID**: Provided once you create an OAuth client\n- A **Client Secret**: Provided once you create an OAuth client\n\nRefer to the [Create an OAuth client documentation](https://developer.goto.com/guides/Get%20Started/02_HOW_createClient/) for detailed instructions on creating an OAuth client. Copy the **OAuth Callback URL** from n8n to use as the **Redirect URI** in your OAuth client. The Client ID and Client secret are provided once you've finished setting up your client.\n",
63937
- "excerpt": "# GoTo Webinar credentials You can use these credentials to authenticate the following nodes: - [GoToWebinar](../../app-nodes/n8n-nodes-base.gotowebinar/) ## Prerequisites Create a [GoToWebinar](https://www.goto.com/webinar) account with [Developer Center](https://developer.goto.com/) access. ## Supported authentication methods - OAuth2 ## Related resources Refer to [GoToWebinar's API documentation](https://developer.goto.com/GoToWebinarV2) for more information about authenticating with...",
63998
+ "markdown": "# Grafana credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Grafana](../../app-nodes/n8n-nodes-base.grafana/)\n\n## Prerequisites\n\n- Create a [Grafana](https://grafana.com/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Grafana's API documentation](https://grafana.com/docs/grafana/latest/developers/http_api/) for more information about authenticating with the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**: Refer to the [Create an API key documentation](https://grafana.com/docs/grafana/latest/administration/api-keys/#create-an-api-key) for detailed instructions on creating an API key.\n- The **Base URL** for your Grafana instance, for example: `https://n8n.grafana.net`.\n",
63999
+ "excerpt": "# Grafana credentials You can use these credentials to authenticate the following nodes: - [Grafana](../../app-nodes/n8n-nodes-base.grafana/) ## Prerequisites - Create a [Grafana](https://grafana.com/) account. ## Supported authentication methods - API key ## Related resources Refer to [Grafana's API documentation](https://grafana.com/docs/grafana/latest/developers/http_api/) for more information about authenticating with the service. ## Using API key To configure this credential, you'...",
63938
64000
  "sections": [
63939
64001
  {
63940
- "title": "GoTo Webinar credentials",
64002
+ "title": "Grafana credentials",
63941
64003
  "level": 1,
63942
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [GoToWebinar](../../app-nodes/n8n-nodes-base.gotowebinar/)"
64004
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [Grafana](../../app-nodes/n8n-nodes-base.grafana/)"
63943
64005
  }
63944
64006
  ]
63945
64007
  },
63946
64008
  "metadata": {
63947
64009
  "keywords": [
63948
- "gotowebinar",
64010
+ "grafana",
63949
64011
  "credentials",
63950
- "goto",
63951
- "webinar",
63952
64012
  "prerequisites",
63953
64013
  "supported",
63954
64014
  "authentication",
63955
64015
  "methods",
63956
64016
  "related",
63957
64017
  "resources",
63958
- "using",
63959
- "oauth2"
64018
+ "using"
64019
+ ],
64020
+ "useCases": [
64021
+ "`https://n8n.grafana.net`."
63960
64022
  ],
63961
- "useCases": [],
63962
64023
  "operations": [],
63963
64024
  "codeExamples": 0,
63964
64025
  "complexity": "beginner",
63965
64026
  "readingTime": "1 min",
63966
- "contentLength": 1061,
64027
+ "contentLength": 795,
63967
64028
  "relatedPages": []
63968
64029
  },
63969
64030
  "searchIndex": {
63970
- "fullText": "gotowebinar credentials # goto webinar credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [gotowebinar](../../app-nodes/n8n-nodes-base.gotowebinar/)\n\n## prerequisites\n\ncreate a [gotowebinar](https://www.goto.com/webinar) account with [developer center](https://developer.goto.com/) access.\n\n## supported authentication methods\n\n- oauth2\n\n## related resources\n\nrefer to [gotowebinar's api documentation](https://developer.goto.com/gotowebinarv2) for more information about authenticating with the service.\n\n## using oauth2\n\nto configure this credential, you'll need:\n\n- a **client id**: provided once you create an oauth client\n- a **client secret**: provided once you create an oauth client\n\nrefer to the [create an oauth client documentation](https://developer.goto.com/guides/get%20started/02_how_createclient/) for detailed instructions on creating an oauth client. copy the **oauth callback url** from n8n to use as the **redirect uri** in your oauth client. the client id and client secret are provided once you've finished setting up your client.\n goto webinar credentials",
64031
+ "fullText": "grafana credentials # grafana credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [grafana](../../app-nodes/n8n-nodes-base.grafana/)\n\n## prerequisites\n\n- create a [grafana](https://grafana.com/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [grafana's api documentation](https://grafana.com/docs/grafana/latest/developers/http_api/) for more information about authenticating with the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**: refer to the [create an api key documentation](https://grafana.com/docs/grafana/latest/administration/api-keys/#create-an-api-key) for detailed instructions on creating an api key.\n- the **base url** for your grafana instance, for example: `https://n8n.grafana.net`.\n grafana credentials",
63971
64032
  "importantTerms": [
63972
- "client",
63973
- "goto",
63974
- "oauth",
63975
- "gotowebinar",
64033
+ "grafana",
63976
64034
  "credentials",
63977
- "create",
63978
64035
  "https",
63979
- "developer",
63980
- "webinar",
63981
64036
  "nodes",
63982
- "provided",
63983
- "once"
64037
+ "create"
63984
64038
  ]
63985
64039
  }
63986
64040
  },
@@ -83426,49 +83480,6 @@
83426
83480
  },
83427
83481
  {
83428
83482
  "id": "page-1144",
83429
- "title": "Blocklist",
83430
- "url": "https://docs.n8n.io/integrations/community-nodes/blocklist/index.md",
83431
- "urlPath": "integrations/community-nodes/blocklist/index.md",
83432
- "category": "other",
83433
- "subcategory": null,
83434
- "nodeName": null,
83435
- "nodeType": null,
83436
- "content": {
83437
- "markdown": "# n8n community node blocklist\n\nn8n maintains a blocklist of community nodes. You can't install any node on this list.\n\nn8n may add community nodes to the blocklist for a range of reasons, including:\n\n- The node is intentionally malicious\n- It's low quality (low enough to be harmful)\n\nIf you are a community node creator whose node is on the blocklist, and you believe this is a mistake, contact \\[hello@n8n.io\\](mailto: hello@n8n.io).\n",
83438
- "excerpt": "# n8n community node blocklist n8n maintains a blocklist of community nodes. You can't install any node on this list. n8n may add community nodes to the blocklist for a range of reasons, including: - The node is intentionally malicious - It's low quality (low enough to be harmful) If you are a community node creator whose node is on the blocklist, and you believe this is a mistake, contact \\[hello@n8n.io\\](mailto: hello@n8n.io)....",
83439
- "sections": [
83440
- {
83441
- "title": "n8n community node blocklist",
83442
- "level": 1,
83443
- "content": "n8n maintains a blocklist of community nodes. You can't install any node on this list.\n\nn8n may add community nodes to the blocklist for a range of reasons, including:\n\n- The node is intentionally malicious\n- It's low quality (low enough to be harmful)\n\nIf you are a community node creator whose node is on the blocklist, and you believe this is a mistake, contact \\[hello@n8n.io\\](mailto: hello@n8n.io)."
83444
- }
83445
- ]
83446
- },
83447
- "metadata": {
83448
- "keywords": [
83449
- "blocklist",
83450
- "community",
83451
- "node"
83452
- ],
83453
- "useCases": [],
83454
- "operations": [],
83455
- "codeExamples": 0,
83456
- "complexity": "beginner",
83457
- "readingTime": "1 min",
83458
- "contentLength": 437,
83459
- "relatedPages": []
83460
- },
83461
- "searchIndex": {
83462
- "fullText": "blocklist # n8n community node blocklist\n\nn8n maintains a blocklist of community nodes. you can't install any node on this list.\n\nn8n may add community nodes to the blocklist for a range of reasons, including:\n\n- the node is intentionally malicious\n- it's low quality (low enough to be harmful)\n\nif you are a community node creator whose node is on the blocklist, and you believe this is a mistake, contact \\[hello@n8n.io\\](mailto: hello@n8n.io).\n n8n community node blocklist",
83463
- "importantTerms": [
83464
- "blocklist",
83465
- "node",
83466
- "community"
83467
- ]
83468
- }
83469
- },
83470
- {
83471
- "id": "page-1145",
83472
83483
  "title": "Common issues",
83473
83484
  "url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger/common-issues/index.md",
83474
83485
  "urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger/common-issues/index.md",
@@ -83552,6 +83563,49 @@
83552
83563
  ]
83553
83564
  }
83554
83565
  },
83566
+ {
83567
+ "id": "page-1145",
83568
+ "title": "Blocklist",
83569
+ "url": "https://docs.n8n.io/integrations/community-nodes/blocklist/index.md",
83570
+ "urlPath": "integrations/community-nodes/blocklist/index.md",
83571
+ "category": "other",
83572
+ "subcategory": null,
83573
+ "nodeName": null,
83574
+ "nodeType": null,
83575
+ "content": {
83576
+ "markdown": "# n8n community node blocklist\n\nn8n maintains a blocklist of community nodes. You can't install any node on this list.\n\nn8n may add community nodes to the blocklist for a range of reasons, including:\n\n- The node is intentionally malicious\n- It's low quality (low enough to be harmful)\n\nIf you are a community node creator whose node is on the blocklist, and you believe this is a mistake, contact \\[hello@n8n.io\\](mailto: hello@n8n.io).\n",
83577
+ "excerpt": "# n8n community node blocklist n8n maintains a blocklist of community nodes. You can't install any node on this list. n8n may add community nodes to the blocklist for a range of reasons, including: - The node is intentionally malicious - It's low quality (low enough to be harmful) If you are a community node creator whose node is on the blocklist, and you believe this is a mistake, contact \\[hello@n8n.io\\](mailto: hello@n8n.io)....",
83578
+ "sections": [
83579
+ {
83580
+ "title": "n8n community node blocklist",
83581
+ "level": 1,
83582
+ "content": "n8n maintains a blocklist of community nodes. You can't install any node on this list.\n\nn8n may add community nodes to the blocklist for a range of reasons, including:\n\n- The node is intentionally malicious\n- It's low quality (low enough to be harmful)\n\nIf you are a community node creator whose node is on the blocklist, and you believe this is a mistake, contact \\[hello@n8n.io\\](mailto: hello@n8n.io)."
83583
+ }
83584
+ ]
83585
+ },
83586
+ "metadata": {
83587
+ "keywords": [
83588
+ "blocklist",
83589
+ "community",
83590
+ "node"
83591
+ ],
83592
+ "useCases": [],
83593
+ "operations": [],
83594
+ "codeExamples": 0,
83595
+ "complexity": "beginner",
83596
+ "readingTime": "1 min",
83597
+ "contentLength": 437,
83598
+ "relatedPages": []
83599
+ },
83600
+ "searchIndex": {
83601
+ "fullText": "blocklist # n8n community node blocklist\n\nn8n maintains a blocklist of community nodes. you can't install any node on this list.\n\nn8n may add community nodes to the blocklist for a range of reasons, including:\n\n- the node is intentionally malicious\n- it's low quality (low enough to be harmful)\n\nif you are a community node creator whose node is on the blocklist, and you believe this is a mistake, contact \\[hello@n8n.io\\](mailto: hello@n8n.io).\n n8n community node blocklist",
83602
+ "importantTerms": [
83603
+ "blocklist",
83604
+ "node",
83605
+ "community"
83606
+ ]
83607
+ }
83608
+ },
83555
83609
  {
83556
83610
  "id": "page-1146",
83557
83611
  "title": "Building community nodes",
@@ -86216,50 +86270,6 @@
86216
86270
  },
86217
86271
  {
86218
86272
  "id": "page-1180",
86219
- "title": "Plan a node",
86220
- "url": "https://docs.n8n.io/integrations/creating-nodes/plan/index.md",
86221
- "urlPath": "integrations/creating-nodes/plan/index.md",
86222
- "category": "other",
86223
- "subcategory": null,
86224
- "nodeName": null,
86225
- "nodeType": null,
86226
- "content": {
86227
- "markdown": "# Plan a node\n\nThis section provides guidance on designing your node, including key technical decisions such as choosing your node building style.\n\nWhen building a node, there are design choices you need to make before you start:\n\n- Which [node type](node-types/) you need to build.\n- Which [node building style](choose-node-method/) to use.\n- Your [UI design and UX principles](node-ui-design/)\n- Your node's [file structure](../build/reference/node-file-structure/).\n",
86228
- "excerpt": "# Plan a node This section provides guidance on designing your node, including key technical decisions such as choosing your node building style. When building a node, there are design choices you need to make before you start: - Which [node type](node-types/) you need to build. - Which [node building style](choose-node-method/) to use. - Your [UI design and UX principles](node-ui-design/) - Your node's [file structure](../build/reference/node-file-structure/)....",
86229
- "sections": [
86230
- {
86231
- "title": "Plan a node",
86232
- "level": 1,
86233
- "content": "This section provides guidance on designing your node, including key technical decisions such as choosing your node building style.\n\nWhen building a node, there are design choices you need to make before you start:\n\n- Which [node type](node-types/) you need to build.\n- Which [node building style](choose-node-method/) to use.\n- Your [UI design and UX principles](node-ui-design/)\n- Your node's [file structure](../build/reference/node-file-structure/)."
86234
- }
86235
- ]
86236
- },
86237
- "metadata": {
86238
- "keywords": [
86239
- "plan",
86240
- "node"
86241
- ],
86242
- "useCases": [],
86243
- "operations": [],
86244
- "codeExamples": 0,
86245
- "complexity": "beginner",
86246
- "readingTime": "1 min",
86247
- "contentLength": 469,
86248
- "relatedPages": []
86249
- },
86250
- "searchIndex": {
86251
- "fullText": "plan a node # plan a node\n\nthis section provides guidance on designing your node, including key technical decisions such as choosing your node building style.\n\nwhen building a node, there are design choices you need to make before you start:\n\n- which [node type](node-types/) you need to build.\n- which [node building style](choose-node-method/) to use.\n- your [ui design and ux principles](node-ui-design/)\n- your node's [file structure](../build/reference/node-file-structure/).\n plan a node",
86252
- "importantTerms": [
86253
- "node",
86254
- "your",
86255
- "plan",
86256
- "building",
86257
- "design"
86258
- ]
86259
- }
86260
- },
86261
- {
86262
- "id": "page-1181",
86263
86273
  "title": "Submit community nodes",
86264
86274
  "url": "https://docs.n8n.io/integrations/creating-nodes/deploy/submit-community-nodes/index.md",
86265
86275
  "urlPath": "integrations/creating-nodes/deploy/submit-community-nodes/index.md",
@@ -86352,6 +86362,50 @@
86352
86362
  ]
86353
86363
  }
86354
86364
  },
86365
+ {
86366
+ "id": "page-1181",
86367
+ "title": "Plan a node",
86368
+ "url": "https://docs.n8n.io/integrations/creating-nodes/plan/index.md",
86369
+ "urlPath": "integrations/creating-nodes/plan/index.md",
86370
+ "category": "other",
86371
+ "subcategory": null,
86372
+ "nodeName": null,
86373
+ "nodeType": null,
86374
+ "content": {
86375
+ "markdown": "# Plan a node\n\nThis section provides guidance on designing your node, including key technical decisions such as choosing your node building style.\n\nWhen building a node, there are design choices you need to make before you start:\n\n- Which [node type](node-types/) you need to build.\n- Which [node building style](choose-node-method/) to use.\n- Your [UI design and UX principles](node-ui-design/)\n- Your node's [file structure](../build/reference/node-file-structure/).\n",
86376
+ "excerpt": "# Plan a node This section provides guidance on designing your node, including key technical decisions such as choosing your node building style. When building a node, there are design choices you need to make before you start: - Which [node type](node-types/) you need to build. - Which [node building style](choose-node-method/) to use. - Your [UI design and UX principles](node-ui-design/) - Your node's [file structure](../build/reference/node-file-structure/)....",
86377
+ "sections": [
86378
+ {
86379
+ "title": "Plan a node",
86380
+ "level": 1,
86381
+ "content": "This section provides guidance on designing your node, including key technical decisions such as choosing your node building style.\n\nWhen building a node, there are design choices you need to make before you start:\n\n- Which [node type](node-types/) you need to build.\n- Which [node building style](choose-node-method/) to use.\n- Your [UI design and UX principles](node-ui-design/)\n- Your node's [file structure](../build/reference/node-file-structure/)."
86382
+ }
86383
+ ]
86384
+ },
86385
+ "metadata": {
86386
+ "keywords": [
86387
+ "plan",
86388
+ "node"
86389
+ ],
86390
+ "useCases": [],
86391
+ "operations": [],
86392
+ "codeExamples": 0,
86393
+ "complexity": "beginner",
86394
+ "readingTime": "1 min",
86395
+ "contentLength": 469,
86396
+ "relatedPages": []
86397
+ },
86398
+ "searchIndex": {
86399
+ "fullText": "plan a node # plan a node\n\nthis section provides guidance on designing your node, including key technical decisions such as choosing your node building style.\n\nwhen building a node, there are design choices you need to make before you start:\n\n- which [node type](node-types/) you need to build.\n- which [node building style](choose-node-method/) to use.\n- your [ui design and ux principles](node-ui-design/)\n- your node's [file structure](../build/reference/node-file-structure/).\n plan a node",
86400
+ "importantTerms": [
86401
+ "node",
86402
+ "your",
86403
+ "plan",
86404
+ "building",
86405
+ "design"
86406
+ ]
86407
+ }
86408
+ },
86355
86409
  {
86356
86410
  "id": "page-1182",
86357
86411
  "title": "Choose a node building style",
@@ -89012,85 +89066,6 @@
89012
89066
  },
89013
89067
  {
89014
89068
  "id": "page-1214",
89015
- "title": "Copy work between environments",
89016
- "url": "https://docs.n8n.io/source-control-environments/using/copy-work/index.md",
89017
- "urlPath": "source-control-environments/using/copy-work/index.md",
89018
- "category": "other",
89019
- "subcategory": null,
89020
- "nodeName": null,
89021
- "nodeType": null,
89022
- "content": {
89023
- "markdown": "# Copy work between environments\n\nThe steps to send work from one n8n instance to another are different depending on whether you use a single Git branch or multiple branches.\n\n## Single branch\n\nIf you have a single Git branch the steps to copy work are:\n\n1. Push work from one instance to the Git branch.\n1. Log in to the other instance to pull the work from Git. You can [automate pulls](#automatically-send-changes-to-n8n).\n\n## Multiple branches\n\nIf you have more than one Git branch, you need to merge the branches in your Git provider to copy work between environments. You can't copy work directly between environments in n8n.\n\nA common pattern is:\n\n1. Do work in your developments instance.\n1. Push the work to the development branch in Git.\n1. Merge your development branch into your production branch. Refer to the documentation for your Git provider for guidance on doing this:\n - [GitHub: Creating a pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request)\n - [GitLab: Creating merge requests](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)\n - [Git: Basic branching and merging](https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging)\n1. In your production n8n instance, pull the changes. You can [automate pulls](#automatically-send-changes-to-n8n).\n\n## Automatically send changes to n8n\n\nYou can automate parts of the process of copying work, using the `/source-control/pull` API endpoint. Call the API after merging the changes:\n\n```\ncurl --request POST \\\n\t--location '<YOUR-INSTANCE-URL>/api/v1/source-control/pull' \\\n\t--header 'Content-Type: application/json' \\\n\t--header 'X-N8N-API-KEY: <YOUR-API-KEY>' \\\n\t--data '{\"force\": true}'\n```\n\nThis means you can use a GitHub Action or GitLab CI/CD to automatically pull changes to the production instance on merge.\n\nA GitHub Action example:\n\n```\nname: CI\non:\n # Trigger the workflow on push or pull request events for the \"production\" branch\n push:\n branches: [ \"production\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\njobs:\n run-pull:\n runs-on: ubuntu-latest\n steps:\n - name: PULL\n\t\t\t\t# Use GitHub secrets to protect sensitive information\n run: >\n curl --location '${{ secrets.INSTANCE_URL }}/version-control/pull' --header\n 'Content-Type: application/json' --header 'X-N8N-API-KEY: ${{ secrets.INSTANCE_API_KEY }}'\n```\n",
89024
- "excerpt": "# Copy work between environments The steps to send work from one n8n instance to another are different depending on whether you use a single Git branch or multiple branches. ## Single branch If you have a single Git branch the steps to copy work are: 1. Push work from one instance to the Git branch. 1. Log in to the other instance to pull the work from Git. You can [automate pulls](#automatically-send-changes-to-n8n). ## Multiple branches If you have more than one Git branch, you need to m...",
89025
- "sections": [
89026
- {
89027
- "title": "Copy work between environments",
89028
- "level": 1,
89029
- "content": "The steps to send work from one n8n instance to another are different depending on whether you use a single Git branch or multiple branches."
89030
- }
89031
- ]
89032
- },
89033
- "metadata": {
89034
- "keywords": [
89035
- "copy",
89036
- "work",
89037
- "between",
89038
- "environments",
89039
- "single",
89040
- "branch",
89041
- "multiple",
89042
- "branches",
89043
- "automatically",
89044
- "send",
89045
- "changes"
89046
- ],
89047
- "useCases": [],
89048
- "operations": [],
89049
- "codeExamples": 2,
89050
- "complexity": "beginner",
89051
- "readingTime": "2 min",
89052
- "contentLength": 2535,
89053
- "relatedPages": []
89054
- },
89055
- "searchIndex": {
89056
- "fullText": "copy work between environments # copy work between environments\n\nthe steps to send work from one n8n instance to another are different depending on whether you use a single git branch or multiple branches.\n\n## single branch\n\nif you have a single git branch the steps to copy work are:\n\n1. push work from one instance to the git branch.\n1. log in to the other instance to pull the work from git. you can [automate pulls](#automatically-send-changes-to-n8n).\n\n## multiple branches\n\nif you have more than one git branch, you need to merge the branches in your git provider to copy work between environments. you can't copy work directly between environments in n8n.\n\na common pattern is:\n\n1. do work in your developments instance.\n1. push the work to the development branch in git.\n1. merge your development branch into your production branch. refer to the documentation for your git provider for guidance on doing this:\n - [github: creating a pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request)\n - [gitlab: creating merge requests](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)\n - [git: basic branching and merging](https://git-scm.com/book/en/v2/git-branching-basic-branching-and-merging)\n1. in your production n8n instance, pull the changes. you can [automate pulls](#automatically-send-changes-to-n8n).\n\n## automatically send changes to n8n\n\nyou can automate parts of the process of copying work, using the `/source-control/pull` api endpoint. call the api after merging the changes:\n\n```\ncurl --request post \\\n\t--location '<your-instance-url>/api/v1/source-control/pull' \\\n\t--header 'content-type: application/json' \\\n\t--header 'x-n8n-api-key: <your-api-key>' \\\n\t--data '{\"force\": true}'\n```\n\nthis means you can use a github action or gitlab ci/cd to automatically pull changes to the production instance on merge.\n\na github action example:\n\n```\nname: ci\non:\n # trigger the workflow on push or pull request events for the \"production\" branch\n push:\n branches: [ \"production\" ]\n # allows you to run this workflow manually from the actions tab\n workflow_dispatch:\njobs:\n run-pull:\n runs-on: ubuntu-latest\n steps:\n - name: pull\n\t\t\t\t# use github secrets to protect sensitive information\n run: >\n curl --location '${{ secrets.instance_url }}/version-control/pull' --header\n 'content-type: application/json' --header 'x-n8n-api-key: ${{ secrets.instance_api_key }}'\n```\n copy work between environments",
89057
- "importantTerms": [
89058
- "pull",
89059
- "work",
89060
- "branch",
89061
- "your",
89062
- "instance",
89063
- "changes",
89064
- "copy",
89065
- "between",
89066
- "environments",
89067
- "production",
89068
- "github",
89069
- "send",
89070
- "from",
89071
- "branches",
89072
- "push",
89073
- "automatically",
89074
- "merge",
89075
- "request",
89076
- "requests",
89077
- "header",
89078
- "steps",
89079
- "single",
89080
- "automate",
89081
- "this",
89082
- "creating",
89083
- "https",
89084
- "gitlab",
89085
- "branching",
89086
- "merging",
89087
- "control",
89088
- "secrets"
89089
- ]
89090
- }
89091
- },
89092
- {
89093
- "id": "page-1215",
89094
89069
  "title": "Compare workflow changes",
89095
89070
  "url": "https://docs.n8n.io/source-control-environments/using/compare-changes/index.md",
89096
89071
  "urlPath": "source-control-environments/using/compare-changes/index.md",
@@ -89172,6 +89147,85 @@
89172
89147
  ]
89173
89148
  }
89174
89149
  },
89150
+ {
89151
+ "id": "page-1215",
89152
+ "title": "Copy work between environments",
89153
+ "url": "https://docs.n8n.io/source-control-environments/using/copy-work/index.md",
89154
+ "urlPath": "source-control-environments/using/copy-work/index.md",
89155
+ "category": "other",
89156
+ "subcategory": null,
89157
+ "nodeName": null,
89158
+ "nodeType": null,
89159
+ "content": {
89160
+ "markdown": "# Copy work between environments\n\nThe steps to send work from one n8n instance to another are different depending on whether you use a single Git branch or multiple branches.\n\n## Single branch\n\nIf you have a single Git branch the steps to copy work are:\n\n1. Push work from one instance to the Git branch.\n1. Log in to the other instance to pull the work from Git. You can [automate pulls](#automatically-send-changes-to-n8n).\n\n## Multiple branches\n\nIf you have more than one Git branch, you need to merge the branches in your Git provider to copy work between environments. You can't copy work directly between environments in n8n.\n\nA common pattern is:\n\n1. Do work in your developments instance.\n1. Push the work to the development branch in Git.\n1. Merge your development branch into your production branch. Refer to the documentation for your Git provider for guidance on doing this:\n - [GitHub: Creating a pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request)\n - [GitLab: Creating merge requests](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)\n - [Git: Basic branching and merging](https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging)\n1. In your production n8n instance, pull the changes. You can [automate pulls](#automatically-send-changes-to-n8n).\n\n## Automatically send changes to n8n\n\nYou can automate parts of the process of copying work, using the `/source-control/pull` API endpoint. Call the API after merging the changes:\n\n```\ncurl --request POST \\\n\t--location '<YOUR-INSTANCE-URL>/api/v1/source-control/pull' \\\n\t--header 'Content-Type: application/json' \\\n\t--header 'X-N8N-API-KEY: <YOUR-API-KEY>' \\\n\t--data '{\"force\": true}'\n```\n\nThis means you can use a GitHub Action or GitLab CI/CD to automatically pull changes to the production instance on merge.\n\nA GitHub Action example:\n\n```\nname: CI\non:\n # Trigger the workflow on push or pull request events for the \"production\" branch\n push:\n branches: [ \"production\" ]\n # Allows you to run this workflow manually from the Actions tab\n workflow_dispatch:\njobs:\n run-pull:\n runs-on: ubuntu-latest\n steps:\n - name: PULL\n\t\t\t\t# Use GitHub secrets to protect sensitive information\n run: >\n curl --location '${{ secrets.INSTANCE_URL }}/version-control/pull' --header\n 'Content-Type: application/json' --header 'X-N8N-API-KEY: ${{ secrets.INSTANCE_API_KEY }}'\n```\n",
89161
+ "excerpt": "# Copy work between environments The steps to send work from one n8n instance to another are different depending on whether you use a single Git branch or multiple branches. ## Single branch If you have a single Git branch the steps to copy work are: 1. Push work from one instance to the Git branch. 1. Log in to the other instance to pull the work from Git. You can [automate pulls](#automatically-send-changes-to-n8n). ## Multiple branches If you have more than one Git branch, you need to m...",
89162
+ "sections": [
89163
+ {
89164
+ "title": "Copy work between environments",
89165
+ "level": 1,
89166
+ "content": "The steps to send work from one n8n instance to another are different depending on whether you use a single Git branch or multiple branches."
89167
+ }
89168
+ ]
89169
+ },
89170
+ "metadata": {
89171
+ "keywords": [
89172
+ "copy",
89173
+ "work",
89174
+ "between",
89175
+ "environments",
89176
+ "single",
89177
+ "branch",
89178
+ "multiple",
89179
+ "branches",
89180
+ "automatically",
89181
+ "send",
89182
+ "changes"
89183
+ ],
89184
+ "useCases": [],
89185
+ "operations": [],
89186
+ "codeExamples": 2,
89187
+ "complexity": "beginner",
89188
+ "readingTime": "2 min",
89189
+ "contentLength": 2535,
89190
+ "relatedPages": []
89191
+ },
89192
+ "searchIndex": {
89193
+ "fullText": "copy work between environments # copy work between environments\n\nthe steps to send work from one n8n instance to another are different depending on whether you use a single git branch or multiple branches.\n\n## single branch\n\nif you have a single git branch the steps to copy work are:\n\n1. push work from one instance to the git branch.\n1. log in to the other instance to pull the work from git. you can [automate pulls](#automatically-send-changes-to-n8n).\n\n## multiple branches\n\nif you have more than one git branch, you need to merge the branches in your git provider to copy work between environments. you can't copy work directly between environments in n8n.\n\na common pattern is:\n\n1. do work in your developments instance.\n1. push the work to the development branch in git.\n1. merge your development branch into your production branch. refer to the documentation for your git provider for guidance on doing this:\n - [github: creating a pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request)\n - [gitlab: creating merge requests](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)\n - [git: basic branching and merging](https://git-scm.com/book/en/v2/git-branching-basic-branching-and-merging)\n1. in your production n8n instance, pull the changes. you can [automate pulls](#automatically-send-changes-to-n8n).\n\n## automatically send changes to n8n\n\nyou can automate parts of the process of copying work, using the `/source-control/pull` api endpoint. call the api after merging the changes:\n\n```\ncurl --request post \\\n\t--location '<your-instance-url>/api/v1/source-control/pull' \\\n\t--header 'content-type: application/json' \\\n\t--header 'x-n8n-api-key: <your-api-key>' \\\n\t--data '{\"force\": true}'\n```\n\nthis means you can use a github action or gitlab ci/cd to automatically pull changes to the production instance on merge.\n\na github action example:\n\n```\nname: ci\non:\n # trigger the workflow on push or pull request events for the \"production\" branch\n push:\n branches: [ \"production\" ]\n # allows you to run this workflow manually from the actions tab\n workflow_dispatch:\njobs:\n run-pull:\n runs-on: ubuntu-latest\n steps:\n - name: pull\n\t\t\t\t# use github secrets to protect sensitive information\n run: >\n curl --location '${{ secrets.instance_url }}/version-control/pull' --header\n 'content-type: application/json' --header 'x-n8n-api-key: ${{ secrets.instance_api_key }}'\n```\n copy work between environments",
89194
+ "importantTerms": [
89195
+ "pull",
89196
+ "work",
89197
+ "branch",
89198
+ "your",
89199
+ "instance",
89200
+ "changes",
89201
+ "copy",
89202
+ "between",
89203
+ "environments",
89204
+ "production",
89205
+ "github",
89206
+ "send",
89207
+ "from",
89208
+ "branches",
89209
+ "push",
89210
+ "automatically",
89211
+ "merge",
89212
+ "request",
89213
+ "requests",
89214
+ "header",
89215
+ "steps",
89216
+ "single",
89217
+ "automate",
89218
+ "this",
89219
+ "creating",
89220
+ "https",
89221
+ "gitlab",
89222
+ "branching",
89223
+ "merging",
89224
+ "control",
89225
+ "secrets"
89226
+ ]
89227
+ }
89228
+ },
89175
89229
  {
89176
89230
  "id": "page-1216",
89177
89231
  "title": "Push and pull",
@@ -92737,7 +92791,7 @@
92737
92791
  "page-0213",
92738
92792
  "page-0224",
92739
92793
  "page-0232",
92740
- "page-0234",
92794
+ "page-0233",
92741
92795
  "page-0235",
92742
92796
  "page-0236",
92743
92797
  "page-0237",
@@ -93315,7 +93369,7 @@
93315
93369
  "page-1188",
93316
93370
  "page-1204",
93317
93371
  "page-1205",
93318
- "page-1215",
93372
+ "page-1214",
93319
93373
  "page-1218",
93320
93374
  "page-1219",
93321
93375
  "page-1246",
@@ -93487,7 +93541,7 @@
93487
93541
  "page-1161",
93488
93542
  "page-1190",
93489
93543
  "page-1204",
93490
- "page-1215",
93544
+ "page-1214",
93491
93545
  "page-1216",
93492
93546
  "page-1255"
93493
93547
  ],
@@ -93535,7 +93589,7 @@
93535
93589
  "page-0095",
93536
93590
  "page-0097",
93537
93591
  "page-0135",
93538
- "page-0139",
93592
+ "page-0140",
93539
93593
  "page-0142",
93540
93594
  "page-0145",
93541
93595
  "page-0147",
@@ -93558,12 +93612,12 @@
93558
93612
  "page-1062",
93559
93613
  "page-1105",
93560
93614
  "page-1118",
93561
- "page-1145",
93615
+ "page-1144",
93562
93616
  "page-1149",
93563
93617
  "page-1192",
93564
93618
  "page-1204",
93565
93619
  "page-1205",
93566
- "page-1215",
93620
+ "page-1214",
93567
93621
  "page-1216",
93568
93622
  "page-1218",
93569
93623
  "page-1219",
@@ -93717,6 +93771,7 @@
93717
93771
  "page-0131",
93718
93772
  "page-0137",
93719
93773
  "page-0138",
93774
+ "page-0139",
93720
93775
  "page-0145",
93721
93776
  "page-0147",
93722
93777
  "page-0158",
@@ -93748,7 +93803,7 @@
93748
93803
  "page-1166",
93749
93804
  "page-1170",
93750
93805
  "page-1179",
93751
- "page-1181",
93806
+ "page-1180",
93752
93807
  "page-1183",
93753
93808
  "page-1204",
93754
93809
  "page-1205",
@@ -93829,7 +93884,7 @@
93829
93884
  "page-0131",
93830
93885
  "page-0135",
93831
93886
  "page-0138",
93832
- "page-0139",
93887
+ "page-0140",
93833
93888
  "page-0147",
93834
93889
  "page-0149",
93835
93890
  "page-0171",
@@ -93906,7 +93961,7 @@
93906
93961
  "page-0069",
93907
93962
  "page-0078",
93908
93963
  "page-0079",
93909
- "page-0234",
93964
+ "page-0233",
93910
93965
  "page-0496",
93911
93966
  "page-0530",
93912
93967
  "page-0534",
@@ -93943,7 +93998,7 @@
93943
93998
  "page-1105",
93944
93999
  "page-1110",
93945
94000
  "page-1111",
93946
- "page-1145",
94001
+ "page-1144",
93947
94002
  "page-1205"
93948
94003
  ],
93949
94004
  "tunnel": [
@@ -93991,7 +94046,7 @@
93991
94046
  "page-0012",
93992
94047
  "page-0026",
93993
94048
  "page-0101",
93994
- "page-0234",
94049
+ "page-0233",
93995
94050
  "page-0348",
93996
94051
  "page-0374",
93997
94052
  "page-0491",
@@ -94068,7 +94123,7 @@
94068
94123
  "page-0719",
94069
94124
  "page-0737",
94070
94125
  "page-0738",
94071
- "page-0741",
94126
+ "page-0740",
94072
94127
  "page-0799",
94073
94128
  "page-0874",
94074
94129
  "page-0877",
@@ -94086,7 +94141,7 @@
94086
94141
  "page-1141",
94087
94142
  "page-1142",
94088
94143
  "page-1143",
94089
- "page-1145",
94144
+ "page-1144",
94090
94145
  "page-1204",
94091
94146
  "page-1229"
94092
94147
  ],
@@ -94134,7 +94189,7 @@
94134
94189
  "page-0943",
94135
94190
  "page-1147",
94136
94191
  "page-1202",
94137
- "page-1215",
94192
+ "page-1214",
94138
94193
  "page-1245"
94139
94194
  ],
94140
94195
  "resumes": [
@@ -94198,7 +94253,7 @@
94198
94253
  "page-0683",
94199
94254
  "page-0697",
94200
94255
  "page-1142",
94201
- "page-1145"
94256
+ "page-1144"
94202
94257
  ],
94203
94258
  "(waiting": [
94204
94259
  "page-0003"
@@ -94222,7 +94277,7 @@
94222
94277
  "page-0014",
94223
94278
  "page-0085",
94224
94279
  "page-1146",
94225
- "page-1181",
94280
+ "page-1180",
94226
94281
  "page-1244"
94227
94282
  ],
94228
94283
  "workflows": [
@@ -94240,6 +94295,7 @@
94240
94295
  "page-0131",
94241
94296
  "page-0136",
94242
94297
  "page-0139",
94298
+ "page-0140",
94243
94299
  "page-0145",
94244
94300
  "page-0147",
94245
94301
  "page-0159",
@@ -94290,7 +94346,7 @@
94290
94346
  "page-0468",
94291
94347
  "page-0662",
94292
94348
  "page-0736",
94293
- "page-0795",
94349
+ "page-0794",
94294
94350
  "page-0857",
94295
94351
  "page-0891",
94296
94352
  "page-1135",
@@ -94384,7 +94440,7 @@
94384
94440
  "page-0799",
94385
94441
  "page-0800",
94386
94442
  "page-0807",
94387
- "page-0809",
94443
+ "page-0808",
94388
94444
  "page-0816",
94389
94445
  "page-0817",
94390
94446
  "page-0818",
@@ -94506,7 +94562,7 @@
94506
94562
  "page-0213",
94507
94563
  "page-0219",
94508
94564
  "page-0227",
94509
- "page-0234",
94565
+ "page-0233",
94510
94566
  "page-0567",
94511
94567
  "page-0570",
94512
94568
  "page-0869",
@@ -94581,7 +94637,7 @@
94581
94637
  "page-0558",
94582
94638
  "page-0559",
94583
94639
  "page-0567",
94584
- "page-0618",
94640
+ "page-0619",
94585
94641
  "page-0621",
94586
94642
  "page-0622",
94587
94643
  "page-0623",
@@ -95356,7 +95412,7 @@
95356
95412
  "page-0383",
95357
95413
  "page-0384",
95358
95414
  "page-0385",
95359
- "page-0386",
95415
+ "page-0387",
95360
95416
  "page-0391",
95361
95417
  "page-0396",
95362
95418
  "page-0397",
@@ -95435,7 +95491,7 @@
95435
95491
  "page-1158",
95436
95492
  "page-1159",
95437
95493
  "page-1179",
95438
- "page-1181",
95494
+ "page-1180",
95439
95495
  "page-1182",
95440
95496
  "page-1184",
95441
95497
  "page-1187",
@@ -95574,7 +95630,7 @@
95574
95630
  "page-0737",
95575
95631
  "page-0738",
95576
95632
  "page-0739",
95577
- "page-0741",
95633
+ "page-0740",
95578
95634
  "page-0876",
95579
95635
  "page-1205",
95580
95636
  "page-1235"
@@ -96362,6 +96418,7 @@
96362
96418
  "page-0131",
96363
96419
  "page-0132",
96364
96420
  "page-0133",
96421
+ "page-0139",
96365
96422
  "page-0143",
96366
96423
  "page-0168",
96367
96424
  "page-0193",
@@ -96376,7 +96433,7 @@
96376
96433
  "page-0531",
96377
96434
  "page-0548",
96378
96435
  "page-0567",
96379
- "page-0618",
96436
+ "page-0619",
96380
96437
  "page-0652",
96381
96438
  "page-0661",
96382
96439
  "page-0662",
@@ -96394,7 +96451,7 @@
96394
96451
  "page-1170",
96395
96452
  "page-1205",
96396
96453
  "page-1207",
96397
- "page-1215",
96454
+ "page-1214",
96398
96455
  "page-1219",
96399
96456
  "page-1236",
96400
96457
  "page-1246"
@@ -96408,7 +96465,7 @@
96408
96465
  "page-1209",
96409
96466
  "page-1210",
96410
96467
  "page-1213",
96411
- "page-1214"
96468
+ "page-1215"
96412
96469
  ],
96413
96470
  "projects": [
96414
96471
  "page-0005",
@@ -96490,7 +96547,7 @@
96490
96547
  "page-1062",
96491
96548
  "page-1105",
96492
96549
  "page-1118",
96493
- "page-1145",
96550
+ "page-1144",
96494
96551
  "page-1207",
96495
96552
  "page-1245",
96496
96553
  "page-1262"
@@ -96524,7 +96581,7 @@
96524
96581
  "page-0566",
96525
96582
  "page-0567",
96526
96583
  "page-0570",
96527
- "page-0618",
96584
+ "page-0619",
96528
96585
  "page-0718",
96529
96586
  "page-0875",
96530
96587
  "page-1205"
@@ -96734,7 +96791,7 @@
96734
96791
  "page-0006",
96735
96792
  "page-0040",
96736
96793
  "page-0113",
96737
- "page-0129",
96794
+ "page-0128",
96738
96795
  "page-0200",
96739
96796
  "page-0221",
96740
96797
  "page-0540",
@@ -96890,7 +96947,7 @@
96890
96947
  "page-1141",
96891
96948
  "page-1142",
96892
96949
  "page-1143",
96893
- "page-1145",
96950
+ "page-1144",
96894
96951
  "page-1183",
96895
96952
  "page-1184",
96896
96953
  "page-1204",
@@ -96907,7 +96964,7 @@
96907
96964
  "page-0072",
96908
96965
  "page-0073",
96909
96966
  "page-1205",
96910
- "page-1215"
96967
+ "page-1214"
96911
96968
  ],
96912
96969
  "banner": [
96913
96970
  "page-0007",
@@ -96930,7 +96987,7 @@
96930
96987
  "page-0714",
96931
96988
  "page-1142",
96932
96989
  "page-1146",
96933
- "page-1181",
96990
+ "page-1180",
96934
96991
  "page-1205",
96935
96992
  "page-1245"
96936
96993
  ],
@@ -96967,7 +97024,7 @@
96967
97024
  "dynamic": [
96968
97025
  "page-0007",
96969
97026
  "page-0567",
96970
- "page-0618",
97027
+ "page-0619",
96971
97028
  "page-1169"
96972
97029
  ],
96973
97030
  "configure": [
@@ -97168,7 +97225,7 @@
97168
97225
  "page-0230",
97169
97226
  "page-0232",
97170
97227
  "page-0857",
97171
- "page-1144",
97228
+ "page-1145",
97172
97229
  "page-1146",
97173
97230
  "page-1147",
97174
97231
  "page-1148",
@@ -97179,7 +97236,7 @@
97179
97236
  "page-1153",
97180
97237
  "page-1170",
97181
97238
  "page-1171",
97182
- "page-1181",
97239
+ "page-1180",
97183
97240
  "page-1204",
97184
97241
  "page-1205"
97185
97242
  ],
@@ -97303,7 +97360,7 @@
97303
97360
  "page-0010",
97304
97361
  "page-0015",
97305
97362
  "page-0145",
97306
- "page-0182",
97363
+ "page-0181",
97307
97364
  "page-0205",
97308
97365
  "page-1204"
97309
97366
  ],
@@ -97384,7 +97441,7 @@
97384
97441
  "streaming": [
97385
97442
  "page-0011",
97386
97443
  "page-0013",
97387
- "page-0181",
97444
+ "page-0182",
97388
97445
  "page-0567",
97389
97446
  "page-1204",
97390
97447
  "page-1247"
@@ -97454,7 +97511,7 @@
97454
97511
  "page-0060",
97455
97512
  "page-0106",
97456
97513
  "page-1196",
97457
- "page-1215"
97514
+ "page-1214"
97458
97515
  ],
97459
97516
  "understanding": [
97460
97517
  "page-0012",
@@ -97462,7 +97519,7 @@
97462
97519
  "page-0074",
97463
97520
  "page-0087",
97464
97521
  "page-0736",
97465
- "page-1215"
97522
+ "page-1214"
97466
97523
  ],
97467
97524
  "status": [
97468
97525
  "page-0012",
@@ -97473,7 +97530,7 @@
97473
97530
  ],
97474
97531
  "viewing": [
97475
97532
  "page-0012",
97476
- "page-1215"
97533
+ "page-1214"
97477
97534
  ],
97478
97535
  "issue": [
97479
97536
  "page-0012"
@@ -97580,7 +97637,7 @@
97580
97637
  "page-1205",
97581
97638
  "page-1207",
97582
97639
  "page-1211",
97583
- "page-1214",
97640
+ "page-1215",
97584
97641
  "page-1216"
97585
97642
  ],
97586
97643
  "proceed": [
@@ -97648,7 +97705,7 @@
97648
97705
  "diff": [
97649
97706
  "page-0013",
97650
97707
  "page-1205",
97651
- "page-1215"
97708
+ "page-1214"
97652
97709
  ],
97653
97710
  "comes": [
97654
97711
  "page-0013"
@@ -97764,7 +97821,7 @@
97764
97821
  "page-1021",
97765
97822
  "page-1146",
97766
97823
  "page-1158",
97767
- "page-1181",
97824
+ "page-1180",
97768
97825
  "page-1186",
97769
97826
  "page-1204",
97770
97827
  "page-1220",
@@ -97854,7 +97911,7 @@
97854
97911
  "page-0309",
97855
97912
  "page-0333",
97856
97913
  "page-0738",
97857
- "page-0741",
97914
+ "page-0740",
97858
97915
  "page-0814",
97859
97916
  "page-0874",
97860
97917
  "page-0877",
@@ -97910,7 +97967,7 @@
97910
97967
  "page-1207",
97911
97968
  "page-1211",
97912
97969
  "page-1212",
97913
- "page-1214"
97970
+ "page-1215"
97914
97971
  ],
97915
97972
  "connections": [
97916
97973
  "page-0013",
@@ -98008,7 +98065,7 @@
98008
98065
  "page-0013",
98009
98066
  "page-0020",
98010
98067
  "page-0137",
98011
- "page-0234",
98068
+ "page-0233",
98012
98069
  "page-0686"
98013
98070
  ],
98014
98071
  "calls": [
@@ -98130,7 +98187,7 @@
98130
98187
  "page-0383",
98131
98188
  "page-0384",
98132
98189
  "page-0385",
98133
- "page-0386",
98190
+ "page-0387",
98134
98191
  "page-0396",
98135
98192
  "page-0397",
98136
98193
  "page-0398",
@@ -98250,7 +98307,7 @@
98250
98307
  "page-0013",
98251
98308
  "page-0231",
98252
98309
  "page-0232",
98253
- "page-0233",
98310
+ "page-0234",
98254
98311
  "page-0648",
98255
98312
  "page-1254"
98256
98313
  ],
@@ -98439,7 +98496,7 @@
98439
98496
  "page-0383",
98440
98497
  "page-0384",
98441
98498
  "page-0385",
98442
- "page-0386",
98499
+ "page-0387",
98443
98500
  "page-0396",
98444
98501
  "page-0397",
98445
98502
  "page-0398",
@@ -98630,7 +98687,7 @@
98630
98687
  "page-0132",
98631
98688
  "page-0133",
98632
98689
  "page-0135",
98633
- "page-0139",
98690
+ "page-0140",
98634
98691
  "page-0163",
98635
98692
  "page-0197",
98636
98693
  "page-0198",
@@ -98780,12 +98837,12 @@
98780
98837
  "page-0027",
98781
98838
  "page-0043",
98782
98839
  "page-0133",
98783
- "page-0139",
98840
+ "page-0140",
98784
98841
  "page-0649",
98785
98842
  "page-0656",
98786
98843
  "page-0657",
98787
98844
  "page-1211",
98788
- "page-1214",
98845
+ "page-1215",
98789
98846
  "page-1232"
98790
98847
  ],
98791
98848
  "source?": [
@@ -98975,7 +99032,7 @@
98975
99032
  "page-0615",
98976
99033
  "page-0616",
98977
99034
  "page-0617",
98978
- "page-0619",
99035
+ "page-0618",
98979
99036
  "page-0620",
98980
99037
  "page-0621",
98981
99038
  "page-0622",
@@ -99514,7 +99571,7 @@
99514
99571
  "page-0615",
99515
99572
  "page-0616",
99516
99573
  "page-0617",
99517
- "page-0619",
99574
+ "page-0618",
99518
99575
  "page-0620",
99519
99576
  "page-0621",
99520
99577
  "page-0622",
@@ -100085,7 +100142,7 @@
100085
100142
  "page-0389",
100086
100143
  "page-0390",
100087
100144
  "page-0391",
100088
- "page-0393",
100145
+ "page-0394",
100089
100146
  "page-0395",
100090
100147
  "page-0396",
100091
100148
  "page-0397",
@@ -100383,7 +100440,7 @@
100383
100440
  "page-0018",
100384
100441
  "page-0065",
100385
100442
  "page-0135",
100386
- "page-0234",
100443
+ "page-0233",
100387
100444
  "page-0674",
100388
100445
  "page-1140",
100389
100446
  "page-1163",
@@ -100526,7 +100583,7 @@
100526
100583
  "page-1062",
100527
100584
  "page-1105",
100528
100585
  "page-1118",
100529
- "page-1145",
100586
+ "page-1144",
100530
100587
  "page-1202",
100531
100588
  "page-1244"
100532
100589
  ],
@@ -100542,7 +100599,7 @@
100542
100599
  "page-0538",
100543
100600
  "page-0567",
100544
100601
  "page-0570",
100545
- "page-0618",
100602
+ "page-0619",
100546
100603
  "page-0633",
100547
100604
  "page-1205"
100548
100605
  ],
@@ -100573,7 +100630,7 @@
100573
100630
  "page-0683",
100574
100631
  "page-0697",
100575
100632
  "page-0738",
100576
- "page-0741",
100633
+ "page-0740",
100577
100634
  "page-0874",
100578
100635
  "page-0877"
100579
100636
  ],
@@ -100666,7 +100723,7 @@
100666
100723
  "page-0201",
100667
100724
  "page-0710",
100668
100725
  "page-0738",
100669
- "page-0741",
100726
+ "page-0740",
100670
100727
  "page-0777",
100671
100728
  "page-0874",
100672
100729
  "page-0877"
@@ -100816,7 +100873,8 @@
100816
100873
  ],
100817
100874
  "splitting": [
100818
100875
  "page-0022",
100819
- "page-0089"
100876
+ "page-0089",
100877
+ "page-0139"
100820
100878
  ],
100821
100879
  "case?": [
100822
100880
  "page-0022"
@@ -100880,7 +100938,7 @@
100880
100938
  "page-0218",
100881
100939
  "page-1204",
100882
100940
  "page-1205",
100883
- "page-1215",
100941
+ "page-1214",
100884
100942
  "page-1243",
100885
100943
  "page-1246",
100886
100944
  "page-1263"
@@ -100888,7 +100946,7 @@
100888
100946
  "results": [
100889
100947
  "page-0024",
100890
100948
  "page-0026",
100891
- "page-0234",
100949
+ "page-0233",
100892
100950
  "page-0548",
100893
100951
  "page-0549",
100894
100952
  "page-0550",
@@ -101001,7 +101059,7 @@
101001
101059
  "page-0718",
101002
101060
  "page-0719",
101003
101061
  "page-0738",
101004
- "page-0741",
101062
+ "page-0740",
101005
101063
  "page-0799",
101006
101064
  "page-0874",
101007
101065
  "page-0877",
@@ -101019,7 +101077,7 @@
101019
101077
  "page-1141",
101020
101078
  "page-1142",
101021
101079
  "page-1143",
101022
- "page-1145",
101080
+ "page-1144",
101023
101081
  "page-1163",
101024
101082
  "page-1184",
101025
101083
  "page-1231",
@@ -101070,7 +101128,7 @@
101070
101128
  "call": [
101071
101129
  "page-0028",
101072
101130
  "page-0047",
101073
- "page-0139",
101131
+ "page-0140",
101074
101132
  "page-0209",
101075
101133
  "page-0630",
101076
101134
  "page-0656",
@@ -101346,7 +101404,7 @@
101346
101404
  "page-0389",
101347
101405
  "page-0390",
101348
101406
  "page-0391",
101349
- "page-0393",
101407
+ "page-0394",
101350
101408
  "page-0395",
101351
101409
  "page-0396",
101352
101410
  "page-0397",
@@ -101858,7 +101916,7 @@
101858
101916
  "`$fromai()`": [
101859
101917
  "page-0037",
101860
101918
  "page-0567",
101861
- "page-0618"
101919
+ "page-0619"
101862
101920
  ],
101863
101921
  "function": [
101864
101922
  "page-0037"
@@ -102033,11 +102091,11 @@
102033
102091
  "page-0723",
102034
102092
  "page-0727",
102035
102093
  "page-0733",
102036
- "page-0741",
102094
+ "page-0740",
102037
102095
  "page-0746",
102038
102096
  "page-0748",
102039
102097
  "page-0753",
102040
- "page-0760",
102098
+ "page-0759",
102041
102099
  "page-0761",
102042
102100
  "page-0763",
102043
102101
  "page-0776",
@@ -102052,7 +102110,7 @@
102052
102110
  "page-0816",
102053
102111
  "page-0817",
102054
102112
  "page-0818",
102055
- "page-0822",
102113
+ "page-0821",
102056
102114
  "page-0827",
102057
102115
  "page-0828",
102058
102116
  "page-0829",
@@ -102110,7 +102168,7 @@
102110
102168
  "page-0699",
102111
102169
  "page-0734",
102112
102170
  "page-0739",
102113
- "page-0741",
102171
+ "page-0740",
102114
102172
  "page-0831",
102115
102173
  "page-0846",
102116
102174
  "page-0874",
@@ -102123,7 +102181,7 @@
102123
102181
  ],
102124
102182
  "token": [
102125
102183
  "page-0043",
102126
- "page-0619",
102184
+ "page-0618",
102127
102185
  "page-0727",
102128
102186
  "page-0733",
102129
102187
  "page-0743",
@@ -102146,7 +102204,7 @@
102146
102204
  "page-0799",
102147
102205
  "page-0800",
102148
102206
  "page-0807",
102149
- "page-0809",
102207
+ "page-0808",
102150
102208
  "page-0816",
102151
102209
  "page-0817",
102152
102210
  "page-0818",
@@ -102502,7 +102560,7 @@
102502
102560
  ],
102503
102561
  "limits": [
102504
102562
  "page-0051",
102505
- "page-0234",
102563
+ "page-0233",
102506
102564
  "page-0990",
102507
102565
  "page-1192",
102508
102566
  "page-1195"
@@ -102691,7 +102749,7 @@
102691
102749
  "page-0383",
102692
102750
  "page-0384",
102693
102751
  "page-0385",
102694
- "page-0386",
102752
+ "page-0387",
102695
102753
  "page-0396",
102696
102754
  "page-0397",
102697
102755
  "page-0398",
@@ -103383,7 +103441,7 @@
103383
103441
  "page-0069",
103384
103442
  "page-0078",
103385
103443
  "page-0079",
103386
- "page-0234",
103444
+ "page-0233",
103387
103445
  "page-0622",
103388
103446
  "page-0665",
103389
103447
  "page-0694",
@@ -103398,7 +103456,7 @@
103398
103456
  ],
103399
103457
  "requests": [
103400
103458
  "page-0052",
103401
- "page-0234",
103459
+ "page-0233",
103402
103460
  "page-0415",
103403
103461
  "page-0492",
103404
103462
  "page-0534",
@@ -103498,7 +103556,7 @@
103498
103556
  "page-0110",
103499
103557
  "page-0111",
103500
103558
  "page-0137",
103501
- "page-0234",
103559
+ "page-0233",
103502
103560
  "page-0670",
103503
103561
  "page-0674",
103504
103562
  "page-0686",
@@ -103603,7 +103661,7 @@
103603
103661
  "page-0607",
103604
103662
  "page-0638",
103605
103663
  "page-1028",
103606
- "page-1214",
103664
+ "page-1215",
103607
103665
  "page-1263"
103608
103666
  ],
103609
103667
  "object": [
@@ -103806,7 +103864,7 @@
103806
103864
  "page-0069",
103807
103865
  "page-0110",
103808
103866
  "page-0522",
103809
- "page-1215"
103867
+ "page-1214"
103810
103868
  ],
103811
103869
  "body": [
103812
103870
  "page-0069",
@@ -103874,7 +103932,7 @@
103874
103932
  ],
103875
103933
  "navigating": [
103876
103934
  "page-0072",
103877
- "page-1215"
103935
+ "page-1214"
103878
103936
  ],
103879
103937
  "started": [
103880
103938
  "page-0072",
@@ -104553,7 +104611,7 @@
104553
104611
  "page-0666",
104554
104612
  "page-0675",
104555
104613
  "page-0739",
104556
- "page-0741",
104614
+ "page-0740",
104557
104615
  "page-0799",
104558
104616
  "page-0800",
104559
104617
  "page-0816",
@@ -104572,7 +104630,7 @@
104572
104630
  "page-0098",
104573
104631
  "page-0287",
104574
104632
  "page-0392",
104575
- "page-0394",
104633
+ "page-0393",
104576
104634
  "page-0777",
104577
104635
  "page-1059"
104578
104636
  ],
@@ -104625,7 +104683,7 @@
104625
104683
  "endpoint": [
104626
104684
  "page-0100",
104627
104685
  "page-0665",
104628
- "page-0760",
104686
+ "page-0759",
104629
104687
  "page-0942"
104630
104688
  ],
104631
104689
  "versus": [
@@ -104803,7 +104861,7 @@
104803
104861
  ],
104804
104862
  "string": [
104805
104863
  "page-0113",
104806
- "page-0128",
104864
+ "page-0129",
104807
104865
  "page-0133",
104808
104866
  "page-0647",
104809
104867
  "page-0660",
@@ -104836,7 +104894,7 @@
104836
104894
  ],
104837
104895
  "**`concat()`**": [
104838
104896
  "page-0114",
104839
- "page-0128"
104897
+ "page-0129"
104840
104898
  ],
104841
104899
  "**`difference()`**": [
104842
104900
  "page-0114"
@@ -104854,11 +104912,11 @@
104854
104912
  ],
104855
104913
  "**`includes()`**": [
104856
104914
  "page-0114",
104857
- "page-0128"
104915
+ "page-0129"
104858
104916
  ],
104859
104917
  "**`indexof()`**": [
104860
104918
  "page-0114",
104861
- "page-0128"
104919
+ "page-0129"
104862
104920
  ],
104863
104921
  "**`intersection()`**": [
104864
104922
  "page-0114"
@@ -104868,12 +104926,12 @@
104868
104926
  "page-0116",
104869
104927
  "page-0125",
104870
104928
  "page-0126",
104871
- "page-0128"
104929
+ "page-0129"
104872
104930
  ],
104873
104931
  "**`isnotempty()`**": [
104874
104932
  "page-0114",
104875
104933
  "page-0126",
104876
- "page-0128"
104934
+ "page-0129"
104877
104935
  ],
104878
104936
  "**`join()`**": [
104879
104937
  "page-0114"
@@ -104885,7 +104943,7 @@
104885
104943
  ],
104886
104944
  "**`length`**": [
104887
104945
  "page-0114",
104888
- "page-0128"
104946
+ "page-0129"
104889
104947
  ],
104890
104948
  "**`map()`**": [
104891
104949
  "page-0114"
@@ -104916,7 +104974,7 @@
104916
104974
  ],
104917
104975
  "**`slice()`**": [
104918
104976
  "page-0114",
104919
- "page-0128"
104977
+ "page-0129"
104920
104978
  ],
104921
104979
  "**`smartjoin()`**": [
104922
104980
  "page-0114"
@@ -104930,7 +104988,7 @@
104930
104988
  "**`tojsonstring()`**": [
104931
104989
  "page-0114",
104932
104990
  "page-0126",
104933
- "page-0128"
104991
+ "page-0129"
104934
104992
  ],
104935
104993
  "**`tospliced()`**": [
104936
104994
  "page-0114"
@@ -104978,7 +105036,7 @@
104978
105036
  ],
104979
105037
  "**`tonumber()`**": [
104980
105038
  "page-0116",
104981
- "page-0128"
105039
+ "page-0129"
104982
105040
  ],
104983
105041
  "`$execution": [
104984
105042
  "page-0117"
@@ -105002,7 +105060,7 @@
105002
105060
  "**`todatetime()`**": [
105003
105061
  "page-0118",
105004
105062
  "page-0125",
105005
- "page-0128"
105063
+ "page-0129"
105006
105064
  ],
105007
105065
  "*`datetime`*": [
105008
105066
  "page-0119"
@@ -105206,7 +105264,7 @@
105206
105264
  ],
105207
105265
  "**`toboolean()`**": [
105208
105266
  "page-0125",
105209
- "page-0128"
105267
+ "page-0129"
105210
105268
  ],
105211
105269
  "*`object`*": [
105212
105270
  "page-0126"
@@ -105231,7 +105289,7 @@
105231
105289
  ],
105232
105290
  "**`urlencode()`**": [
105233
105291
  "page-0126",
105234
- "page-0128"
105292
+ "page-0129"
105235
105293
  ],
105236
105294
  "**`values()`**": [
105237
105295
  "page-0126"
@@ -105246,169 +105304,169 @@
105246
105304
  "**`runindex`**": [
105247
105305
  "page-0127"
105248
105306
  ],
105249
- "*`string`*": [
105307
+ "**`$()`**": [
105250
105308
  "page-0128"
105251
105309
  ],
105252
- "**`base64decode()`**": [
105310
+ "**`$binary`**": [
105253
105311
  "page-0128"
105254
105312
  ],
105255
- "**`base64encode()`**": [
105313
+ "**`$execution`**": [
105256
105314
  "page-0128"
105257
105315
  ],
105258
- "**`extractdomain()`**": [
105316
+ "**`$fromai()`**": [
105259
105317
  "page-0128"
105260
105318
  ],
105261
- "**`extractemail()`**": [
105319
+ "**`$if()`**": [
105262
105320
  "page-0128"
105263
105321
  ],
105264
- "**`extracturl()`**": [
105322
+ "**`$ifempty()`**": [
105265
105323
  "page-0128"
105266
105324
  ],
105267
- "**`extracturlpath()`**": [
105325
+ "**`$input`**": [
105268
105326
  "page-0128"
105269
105327
  ],
105270
- "**`hash()`**": [
105328
+ "**`$itemindex`**": [
105271
105329
  "page-0128"
105272
105330
  ],
105273
- "**`isdomain()`**": [
105331
+ "**`$jmespath()`**": [
105274
105332
  "page-0128"
105275
105333
  ],
105276
- "**`isemail()`**": [
105334
+ "**`$json`**": [
105277
105335
  "page-0128"
105278
105336
  ],
105279
- "**`isnumeric()`**": [
105337
+ "**`$max()`**": [
105280
105338
  "page-0128"
105281
105339
  ],
105282
- "**`isurl()`**": [
105340
+ "**`$min()`**": [
105283
105341
  "page-0128"
105284
105342
  ],
105285
- "**`match()`**": [
105343
+ "**`$nodeversion`**": [
105286
105344
  "page-0128"
105287
105345
  ],
105288
- "**`parsejson()`**": [
105346
+ "**`$now`**": [
105289
105347
  "page-0128"
105290
105348
  ],
105291
- "**`quote()`**": [
105349
+ "**`$pagecount`**": [
105292
105350
  "page-0128"
105293
105351
  ],
105294
- "**`removemarkdown()`**": [
105352
+ "**`$parameter`**": [
105295
105353
  "page-0128"
105296
105354
  ],
105297
- "**`removetags()`**": [
105355
+ "**`$prevnode`**": [
105298
105356
  "page-0128"
105299
105357
  ],
105300
- "**`replace()`**": [
105358
+ "**`$request`**": [
105301
105359
  "page-0128"
105302
105360
  ],
105303
- "**`replaceall()`**": [
105361
+ "**`$response`**": [
105304
105362
  "page-0128"
105305
105363
  ],
105306
- "**`replacespecialchars()`**": [
105364
+ "**`$runindex`**": [
105307
105365
  "page-0128"
105308
105366
  ],
105309
- "**`search()`**": [
105367
+ "**`$secrets`**": [
105310
105368
  "page-0128"
105311
105369
  ],
105312
- "**`split()`**": [
105370
+ "**`$today`**": [
105313
105371
  "page-0128"
105314
105372
  ],
105315
- "**`startswith()`**": [
105373
+ "**`$vars`**": [
105316
105374
  "page-0128"
105317
105375
  ],
105318
- "**`substring()`**": [
105376
+ "**`$workflow`**": [
105319
105377
  "page-0128"
105320
105378
  ],
105321
- "**`tolowercase()`**": [
105322
- "page-0128"
105379
+ "*`string`*": [
105380
+ "page-0129"
105323
105381
  ],
105324
- "**`tosentencecase()`**": [
105325
- "page-0128"
105382
+ "**`base64decode()`**": [
105383
+ "page-0129"
105326
105384
  ],
105327
- "**`tosnakecase()`**": [
105328
- "page-0128"
105385
+ "**`base64encode()`**": [
105386
+ "page-0129"
105329
105387
  ],
105330
- "**`totitlecase()`**": [
105331
- "page-0128"
105388
+ "**`extractdomain()`**": [
105389
+ "page-0129"
105332
105390
  ],
105333
- "**`touppercase()`**": [
105334
- "page-0128"
105391
+ "**`extractemail()`**": [
105392
+ "page-0129"
105335
105393
  ],
105336
- "**`trim()`**": [
105337
- "page-0128"
105394
+ "**`extracturl()`**": [
105395
+ "page-0129"
105338
105396
  ],
105339
- "**`urldecode()`**": [
105340
- "page-0128"
105397
+ "**`extracturlpath()`**": [
105398
+ "page-0129"
105341
105399
  ],
105342
- "**`$()`**": [
105400
+ "**`hash()`**": [
105343
105401
  "page-0129"
105344
105402
  ],
105345
- "**`$binary`**": [
105403
+ "**`isdomain()`**": [
105346
105404
  "page-0129"
105347
105405
  ],
105348
- "**`$execution`**": [
105406
+ "**`isemail()`**": [
105349
105407
  "page-0129"
105350
105408
  ],
105351
- "**`$fromai()`**": [
105409
+ "**`isnumeric()`**": [
105352
105410
  "page-0129"
105353
105411
  ],
105354
- "**`$if()`**": [
105412
+ "**`isurl()`**": [
105355
105413
  "page-0129"
105356
105414
  ],
105357
- "**`$ifempty()`**": [
105415
+ "**`match()`**": [
105358
105416
  "page-0129"
105359
105417
  ],
105360
- "**`$input`**": [
105418
+ "**`parsejson()`**": [
105361
105419
  "page-0129"
105362
105420
  ],
105363
- "**`$itemindex`**": [
105421
+ "**`quote()`**": [
105364
105422
  "page-0129"
105365
105423
  ],
105366
- "**`$jmespath()`**": [
105424
+ "**`removemarkdown()`**": [
105367
105425
  "page-0129"
105368
105426
  ],
105369
- "**`$json`**": [
105427
+ "**`removetags()`**": [
105370
105428
  "page-0129"
105371
105429
  ],
105372
- "**`$max()`**": [
105430
+ "**`replace()`**": [
105373
105431
  "page-0129"
105374
105432
  ],
105375
- "**`$min()`**": [
105433
+ "**`replaceall()`**": [
105376
105434
  "page-0129"
105377
105435
  ],
105378
- "**`$nodeversion`**": [
105436
+ "**`replacespecialchars()`**": [
105379
105437
  "page-0129"
105380
105438
  ],
105381
- "**`$now`**": [
105439
+ "**`search()`**": [
105382
105440
  "page-0129"
105383
105441
  ],
105384
- "**`$pagecount`**": [
105442
+ "**`split()`**": [
105385
105443
  "page-0129"
105386
105444
  ],
105387
- "**`$parameter`**": [
105445
+ "**`startswith()`**": [
105388
105446
  "page-0129"
105389
105447
  ],
105390
- "**`$prevnode`**": [
105448
+ "**`substring()`**": [
105391
105449
  "page-0129"
105392
105450
  ],
105393
- "**`$request`**": [
105451
+ "**`tolowercase()`**": [
105394
105452
  "page-0129"
105395
105453
  ],
105396
- "**`$response`**": [
105454
+ "**`tosentencecase()`**": [
105397
105455
  "page-0129"
105398
105456
  ],
105399
- "**`$runindex`**": [
105457
+ "**`tosnakecase()`**": [
105400
105458
  "page-0129"
105401
105459
  ],
105402
- "**`$secrets`**": [
105460
+ "**`totitlecase()`**": [
105403
105461
  "page-0129"
105404
105462
  ],
105405
- "**`$today`**": [
105463
+ "**`touppercase()`**": [
105406
105464
  "page-0129"
105407
105465
  ],
105408
- "**`$vars`**": [
105466
+ "**`trim()`**": [
105409
105467
  "page-0129"
105410
105468
  ],
105411
- "**`$workflow`**": [
105469
+ "**`urldecode()`**": [
105412
105470
  "page-0129"
105413
105471
  ],
105414
105472
  "`$workflow`": [
@@ -105556,7 +105614,7 @@
105556
105614
  ],
105557
105615
  "flow": [
105558
105616
  "page-0134",
105559
- "page-0305",
105617
+ "page-0304",
105560
105618
  "page-0805",
105561
105619
  "page-1064"
105562
105620
  ],
@@ -105624,7 +105682,7 @@
105624
105682
  "page-0674",
105625
105683
  "page-1207",
105626
105684
  "page-1212",
105627
- "page-1214"
105685
+ "page-1215"
105628
105686
  ],
105629
105687
  "loops": [
105630
105688
  "page-0137"
@@ -105667,13 +105725,19 @@
105667
105725
  "page-0138",
105668
105726
  "page-0205"
105669
105727
  ],
105728
+ "conditionals": [
105729
+ "page-0139"
105730
+ ],
105731
+ "conditional": [
105732
+ "page-0139"
105733
+ ],
105670
105734
  "passes": [
105671
- "page-0139",
105735
+ "page-0140",
105672
105736
  "page-0656",
105673
105737
  "page-0657"
105674
105738
  ],
105675
105739
  "conversion": [
105676
- "page-0139",
105740
+ "page-0140",
105677
105741
  "page-0684",
105678
105742
  "page-1248"
105679
105743
  ],
@@ -105814,7 +105878,7 @@
105814
105878
  "page-0662",
105815
105879
  "page-0743",
105816
105880
  "page-0793",
105817
- "page-0795",
105881
+ "page-0794",
105818
105882
  "page-0806",
105819
105883
  "page-0815",
105820
105884
  "page-0831",
@@ -105852,7 +105916,7 @@
105852
105916
  "page-0147",
105853
105917
  "page-0503",
105854
105918
  "page-1142",
105855
- "page-1145"
105919
+ "page-1144"
105856
105920
  ],
105857
105921
  "installed": [
105858
105922
  "page-0147"
@@ -105872,7 +105936,7 @@
105872
105936
  "page-0147",
105873
105937
  "page-0152",
105874
105938
  "page-0509",
105875
- "page-0741",
105939
+ "page-0740",
105876
105940
  "page-1246"
105877
105941
  ],
105878
105942
  "statistics": [
@@ -106128,7 +106192,7 @@
106128
106192
  ],
106129
106193
  "library": [
106130
106194
  "page-0159",
106131
- "page-0233",
106195
+ "page-0234",
106132
106196
  "page-0641",
106133
106197
  "page-0720",
106134
106198
  "page-1038",
@@ -106214,7 +106278,7 @@
106214
106278
  "page-0205",
106215
106279
  "page-0734",
106216
106280
  "page-0739",
106217
- "page-0741",
106281
+ "page-0740",
106218
106282
  "page-0778",
106219
106283
  "page-0799",
106220
106284
  "page-0874",
@@ -106329,7 +106393,7 @@
106329
106393
  "page-1062",
106330
106394
  "page-1105",
106331
106395
  "page-1118",
106332
- "page-1145",
106396
+ "page-1144",
106333
106397
  "page-1171"
106334
106398
  ],
106335
106399
  "crypto": [
@@ -106429,12 +106493,12 @@
106429
106493
  "page-0214",
106430
106494
  "page-0260",
106431
106495
  "page-0322",
106432
- "page-0741",
106496
+ "page-0740",
106433
106497
  "page-1204",
106434
106498
  "page-1205"
106435
106499
  ],
106436
106500
  "logs": [
106437
- "page-0181",
106501
+ "page-0182",
106438
106502
  "page-0205",
106439
106503
  "page-0206",
106440
106504
  "page-1205"
@@ -106612,7 +106676,7 @@
106612
106676
  "page-0600",
106613
106677
  "page-0610",
106614
106678
  "page-0613",
106615
- "page-0618",
106679
+ "page-0619",
106616
106680
  "page-0624",
106617
106681
  "page-0625",
106618
106682
  "page-0631",
@@ -106729,7 +106793,7 @@
106729
106793
  "page-1035",
106730
106794
  "page-1036",
106731
106795
  "page-1037",
106732
- "page-1214",
106796
+ "page-1215",
106733
106797
  "page-1216"
106734
106798
  ],
106735
106799
  "kubectl": [
@@ -106761,7 +106825,7 @@
106761
106825
  "register": [
106762
106826
  "page-0200",
106763
106827
  "page-0739",
106764
- "page-0741",
106828
+ "page-0740",
106765
106829
  "page-0874",
106766
106830
  "page-0877"
106767
106831
  ],
@@ -106938,7 +107002,7 @@
106938
107002
  "page-0206",
106939
107003
  "page-0213",
106940
107004
  "page-1192",
106941
- "page-1215"
107005
+ "page-1214"
106942
107006
  ],
106943
107007
  "their": [
106944
107008
  "page-0201"
@@ -107052,7 +107116,7 @@
107052
107116
  "page-0213",
107053
107117
  "page-0561",
107054
107118
  "page-0569",
107055
- "page-1145"
107119
+ "page-1144"
107056
107120
  ],
107057
107121
  "enabled": [
107058
107122
  "page-0205"
@@ -107251,7 +107315,7 @@
107251
107315
  "page-0205",
107252
107316
  "page-0507",
107253
107317
  "page-1170",
107254
- "page-1214",
107318
+ "page-1215",
107255
107319
  "page-1242",
107256
107320
  "page-1243"
107257
107321
  ],
@@ -107302,7 +107366,7 @@
107302
107366
  "stuck": [
107303
107367
  "page-0205",
107304
107368
  "page-1142",
107305
- "page-1145"
107369
+ "page-1144"
107306
107370
  ],
107307
107371
  "`pending`": [
107308
107372
  "page-0205"
@@ -107676,7 +107740,7 @@
107676
107740
  "integrations": [
107677
107741
  "page-0230",
107678
107742
  "page-0232",
107679
- "page-0234",
107743
+ "page-0233",
107680
107744
  "page-0877",
107681
107745
  "page-0898"
107682
107746
  ],
@@ -107839,7 +107903,7 @@
107839
107903
  "page-0389",
107840
107904
  "page-0390",
107841
107905
  "page-0391",
107842
- "page-0393",
107906
+ "page-0394",
107843
107907
  "page-0395",
107844
107908
  "page-0396",
107845
107909
  "page-0397",
@@ -108013,7 +108077,7 @@
108013
108077
  "existing": [
108014
108078
  "page-0231",
108015
108079
  "page-1146",
108016
- "page-1181",
108080
+ "page-1180",
108017
108081
  "page-1254"
108018
108082
  ],
108019
108083
  "predefined": [
@@ -108026,18 +108090,18 @@
108026
108090
  "page-1254"
108027
108091
  ],
108028
108092
  "handle": [
108029
- "page-0234",
108093
+ "page-0233",
108030
108094
  "page-0517"
108031
108095
  ],
108032
108096
  "rate": [
108033
- "page-0234",
108097
+ "page-0233",
108034
108098
  "page-0990"
108035
108099
  ],
108036
108100
  "identify": [
108037
- "page-0234"
108101
+ "page-0233"
108038
108102
  ],
108039
108103
  "limit": [
108040
- "page-0234",
108104
+ "page-0233",
108041
108105
  "page-0558",
108042
108106
  "page-0566",
108043
108107
  "page-0627",
@@ -108047,31 +108111,31 @@
108047
108111
  "page-1205"
108048
108112
  ],
108049
108113
  "retry": [
108050
- "page-0234",
108114
+ "page-0233",
108051
108115
  "page-0710",
108052
108116
  "page-1257",
108053
108117
  "page-1263"
108054
108118
  ],
108055
108119
  "fail": [
108056
- "page-0234",
108120
+ "page-0233",
108057
108121
  "page-0710"
108058
108122
  ],
108059
108123
  "over": [
108060
- "page-0234",
108124
+ "page-0233",
108061
108125
  "page-0686"
108062
108126
  ],
108063
108127
  "wait": [
108064
- "page-0234",
108128
+ "page-0233",
108065
108129
  "page-0499",
108066
108130
  "page-0528",
108067
108131
  "page-0694"
108068
108132
  ],
108069
108133
  "batch": [
108070
- "page-0234",
108134
+ "page-0233",
108071
108135
  "page-0686"
108072
108136
  ],
108073
108137
  "paginate": [
108074
- "page-0234"
108138
+ "page-0233"
108075
108139
  ],
108076
108140
  "action": [
108077
108141
  "page-0235",
@@ -108183,7 +108247,7 @@
108183
108247
  "page-0383",
108184
108248
  "page-0384",
108185
108249
  "page-0385",
108186
- "page-0386",
108250
+ "page-0387",
108187
108251
  "page-0396",
108188
108252
  "page-0397",
108189
108253
  "page-0398",
@@ -108343,7 +108407,7 @@
108343
108407
  "elastic": [
108344
108408
  "page-0249",
108345
108409
  "page-0299",
108346
- "page-0795",
108410
+ "page-0794",
108347
108411
  "page-1204"
108348
108412
  ],
108349
108413
  "balancing": [
@@ -108369,7 +108433,7 @@
108369
108433
  ],
108370
108434
  "bamboohr": [
108371
108435
  "page-0261",
108372
- "page-0740"
108436
+ "page-0741"
108373
108437
  ],
108374
108438
  "bannerbear": [
108375
108439
  "page-0262",
@@ -108527,7 +108591,7 @@
108527
108591
  ],
108528
108592
  "emelia": [
108529
108593
  "page-0300",
108530
- "page-0794",
108594
+ "page-0795",
108531
108595
  "page-1060"
108532
108596
  ],
108533
108597
  "erpnext": [
@@ -108566,8 +108630,8 @@
108566
108630
  "page-0803"
108567
108631
  ],
108568
108632
  "freshdesk": [
108569
- "page-0304",
108570
- "page-0808"
108633
+ "page-0305",
108634
+ "page-0809"
108571
108635
  ],
108572
108636
  "freshservice": [
108573
108637
  "page-0306",
@@ -108667,11 +108731,11 @@
108667
108731
  ],
108668
108732
  "gotowebinar": [
108669
108733
  "page-0330",
108670
- "page-0822"
108734
+ "page-0821"
108671
108735
  ],
108672
108736
  "grafana": [
108673
108737
  "page-0331",
108674
- "page-0821"
108738
+ "page-0822"
108675
108739
  ],
108676
108740
  "grist": [
108677
108741
  "page-0332",
@@ -108938,13 +109002,13 @@
108938
109002
  "page-0884",
108939
109003
  "page-1205"
108940
109004
  ],
108941
- "monday": [
109005
+ "mocean": [
108942
109006
  "page-0386",
108943
- "page-0886"
109007
+ "page-0885"
108944
109008
  ],
108945
- "mocean": [
109009
+ "monday": [
108946
109010
  "page-0387",
108947
- "page-0885"
109011
+ "page-0886"
108948
109012
  ],
108949
109013
  "mongodb": [
108950
109014
  "page-0388",
@@ -108967,20 +109031,20 @@
108967
109031
  ],
108968
109032
  "(n8n": [
108969
109033
  "page-0392",
108970
- "page-0394"
109034
+ "page-0393"
108971
109035
  ],
108972
109036
  "training)": [
108973
109037
  "page-0392",
108974
- "page-0394"
109038
+ "page-0393"
109039
+ ],
109040
+ "messenger": [
109041
+ "page-0393"
108975
109042
  ],
108976
109043
  "nasa": [
108977
- "page-0393",
109044
+ "page-0394",
108978
109045
  "page-0893",
108979
109046
  "page-1219"
108980
109047
  ],
108981
- "messenger": [
108982
- "page-0394"
108983
- ],
108984
109048
  "netlify": [
108985
109049
  "page-0395",
108986
109050
  "page-0894",
@@ -109716,7 +109780,7 @@
109716
109780
  "page-0528",
109717
109781
  "page-0977",
109718
109782
  "page-1143",
109719
- "page-1145"
109783
+ "page-1144"
109720
109784
  ],
109721
109785
  "answer": [
109722
109786
  "page-0524",
@@ -109877,7 +109941,7 @@
109877
109941
  "page-0703",
109878
109942
  "page-0743",
109879
109943
  "page-0793",
109880
- "page-0795",
109944
+ "page-0794",
109881
109945
  "page-0806",
109882
109946
  "page-0815",
109883
109947
  "page-0831",
@@ -110291,7 +110355,7 @@
110291
110355
  "plan": [
110292
110356
  "page-0564",
110293
110357
  "page-0900",
110294
- "page-1180",
110358
+ "page-1181",
110295
110359
  "page-1192"
110296
110360
  ],
110297
110361
  "react": [
@@ -110312,7 +110376,7 @@
110312
110376
  "page-0567",
110313
110377
  "page-1204",
110314
110378
  "page-1205",
110315
- "page-1214",
110379
+ "page-1215",
110316
110380
  "page-1241"
110317
110381
  ],
110318
110382
  "passthrough": [
@@ -110506,7 +110570,7 @@
110506
110570
  "splitter": [
110507
110571
  "page-0616",
110508
110572
  "page-0617",
110509
- "page-0619"
110573
+ "page-0618"
110510
110574
  ],
110511
110575
  "recursive": [
110512
110576
  "page-0617"
@@ -110607,7 +110671,7 @@
110607
110671
  "page-0645",
110608
110672
  "page-0669",
110609
110673
  "page-1204",
110610
- "page-1215"
110674
+ "page-1214"
110611
110675
  ],
110612
110676
  "datasets": [
110613
110677
  "page-0645"
@@ -110754,7 +110818,7 @@
110754
110818
  "page-1207",
110755
110819
  "page-1208",
110756
110820
  "page-1212",
110757
- "page-1214"
110821
+ "page-1215"
110758
110822
  ],
110759
110823
  "mutually": [
110760
110824
  "page-0661"
@@ -111230,7 +111294,7 @@
111230
111294
  ],
111231
111295
  "application": [
111232
111296
  "page-0739",
111233
- "page-0741",
111297
+ "page-0740",
111234
111298
  "page-0874",
111235
111299
  "page-0877",
111236
111300
  "page-1011",
@@ -111253,10 +111317,10 @@
111253
111317
  "meraki": [
111254
111318
  "page-0758"
111255
111319
  ],
111256
- "umbrella": [
111320
+ "secure": [
111257
111321
  "page-0759"
111258
111322
  ],
111259
- "secure": [
111323
+ "umbrella": [
111260
111324
  "page-0760"
111261
111325
  ],
111262
111326
  "convertapi": [
@@ -111325,10 +111389,10 @@
111325
111389
  "page-1066"
111326
111390
  ],
111327
111391
  "fortinet": [
111328
- "page-0809"
111392
+ "page-0808"
111329
111393
  ],
111330
111394
  "fortigate": [
111331
- "page-0809"
111395
+ "page-0808"
111332
111396
  ],
111333
111397
  "sftp": [
111334
111398
  "page-0812"
@@ -111337,10 +111401,10 @@
111337
111401
  "page-0819"
111338
111402
  ],
111339
111403
  "goto": [
111340
- "page-0822"
111404
+ "page-0821"
111341
111405
  ],
111342
111406
  "webinar": [
111343
- "page-0822"
111407
+ "page-0821"
111344
111408
  ],
111345
111409
  "gumroad": [
111346
111410
  "page-0825",
@@ -111622,7 +111686,7 @@
111622
111686
  "page-1035",
111623
111687
  "page-1146",
111624
111688
  "page-1171",
111625
- "page-1181"
111689
+ "page-1180"
111626
111690
  ],
111627
111691
  "poll": [
111628
111692
  "page-1042",
@@ -111638,7 +111702,7 @@
111638
111702
  "page-1062",
111639
111703
  "page-1105",
111640
111704
  "page-1118",
111641
- "page-1145",
111705
+ "page-1144",
111642
111706
  "page-1157",
111643
111707
  "page-1235"
111644
111708
  ],
@@ -111662,40 +111726,40 @@
111662
111726
  "rendering": [
111663
111727
  "page-1142"
111664
111728
  ],
111665
- "blocklist": [
111666
- "page-1144"
111667
- ],
111668
111729
  "request:": [
111669
- "page-1145"
111730
+ "page-1144"
111670
111731
  ],
111671
111732
  "webhook:": [
111672
- "page-1145"
111733
+ "page-1144"
111673
111734
  ],
111674
111735
  "https": [
111675
- "page-1145",
111736
+ "page-1144",
111676
111737
  "page-1205",
111677
111738
  "page-1208"
111678
111739
  ],
111679
111740
  "provided": [
111741
+ "page-1144"
111742
+ ],
111743
+ "blocklist": [
111680
111744
  "page-1145"
111681
111745
  ],
111682
111746
  "standards": [
111683
111747
  "page-1146",
111684
111748
  "page-1161",
111685
- "page-1181",
111749
+ "page-1180",
111686
111750
  "page-1184"
111687
111751
  ],
111688
111752
  "submit": [
111689
111753
  "page-1146",
111690
- "page-1181"
111754
+ "page-1180"
111691
111755
  ],
111692
111756
  "ready": [
111693
111757
  "page-1146",
111694
- "page-1181"
111758
+ "page-1180"
111695
111759
  ],
111696
111760
  "submit?": [
111697
111761
  "page-1146",
111698
- "page-1181"
111762
+ "page-1180"
111699
111763
  ],
111700
111764
  "risks": [
111701
111765
  "page-1147"
@@ -112453,17 +112517,17 @@
112453
112517
  "page-1212"
112454
112518
  ],
112455
112519
  "diffs": [
112456
- "page-1215"
112520
+ "page-1214"
112457
112521
  ],
112458
112522
  "pushing": [
112459
- "page-1215"
112523
+ "page-1214"
112460
112524
  ],
112461
112525
  "pulling": [
112462
- "page-1215",
112526
+ "page-1214",
112463
112527
  "page-1216"
112464
112528
  ],
112465
112529
  "reviewing": [
112466
- "page-1215"
112530
+ "page-1214"
112467
112531
  ],
112468
112532
  "people's": [
112469
112533
  "page-1216"
@@ -112683,7 +112747,7 @@
112683
112747
  "page-0230",
112684
112748
  "page-0231",
112685
112749
  "page-0232",
112686
- "page-0234",
112750
+ "page-0233",
112687
112751
  "page-0641",
112688
112752
  "page-0642",
112689
112753
  "page-0643",
@@ -113081,7 +113145,7 @@
113081
113145
  "page-1035",
113082
113146
  "page-1036",
113083
113147
  "page-1037",
113084
- "page-1144",
113148
+ "page-1145",
113085
113149
  "page-1146",
113086
113150
  "page-1147",
113087
113151
  "page-1148",
@@ -113309,6 +113373,7 @@
113309
113373
  "page-0137",
113310
113374
  "page-0138",
113311
113375
  "page-0139",
113376
+ "page-0140",
113312
113377
  "page-0141"
113313
113378
  ],
113314
113379
  "hosting": [
@@ -113400,7 +113465,7 @@
113400
113465
  "page-0229"
113401
113466
  ],
113402
113467
  "integrations": [
113403
- "page-0233",
113468
+ "page-0234",
113404
113469
  "page-0235",
113405
113470
  "page-0236",
113406
113471
  "page-0237",
@@ -113917,7 +113982,7 @@
113917
113982
  "page-1141",
113918
113983
  "page-1142",
113919
113984
  "page-1143",
113920
- "page-1145"
113985
+ "page-1144"
113921
113986
  ],
113922
113987
  "try-it-out": [
113923
113988
  "page-1217",
@@ -114159,10 +114224,10 @@
114159
114224
  "filemaker": [
114160
114225
  "page-0303"
114161
114226
  ],
114162
- "freshdesk": [
114227
+ "flow": [
114163
114228
  "page-0304"
114164
114229
  ],
114165
- "flow": [
114230
+ "freshdesk": [
114166
114231
  "page-0305"
114167
114232
  ],
114168
114233
  "freshservice": [
@@ -114405,10 +114470,10 @@
114405
114470
  "mistralai": [
114406
114471
  "page-0385"
114407
114472
  ],
114408
- "mondaycom": [
114473
+ "mocean": [
114409
114474
  "page-0386"
114410
114475
  ],
114411
- "mocean": [
114476
+ "mondaycom": [
114412
114477
  "page-0387"
114413
114478
  ],
114414
114479
  "mongodb": [
@@ -114426,10 +114491,10 @@
114426
114491
  "n8ntrainingcustomerdatastore": [
114427
114492
  "page-0392"
114428
114493
  ],
114429
- "nasa": [
114494
+ "n8ntrainingcustomermessenger": [
114430
114495
  "page-0393"
114431
114496
  ],
114432
- "n8ntrainingcustomermessenger": [
114497
+ "nasa": [
114433
114498
  "page-0394"
114434
114499
  ],
114435
114500
  "netlify": [
@@ -115257,7 +115322,7 @@
115257
115322
  ],
115258
115323
  "telegramtrigger": [
115259
115324
  "page-1143",
115260
- "page-1145"
115325
+ "page-1144"
115261
115326
  ]
115262
115327
  }
115263
115328
  }