@n8n-as-code/skills 1.3.2-next.1 → 1.4.0-next.10

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,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-03-31T14:48:46.205Z",
2
+ "generatedAt": "2026-03-31T16:07:21.581Z",
3
3
  "version": "1.0.0",
4
4
  "sourceUrl": "https://docs.n8n.io/llms.txt",
5
5
  "totalPages": 1260,
@@ -39232,219 +39232,219 @@
39232
39232
  },
39233
39233
  {
39234
39234
  "id": "page-0516",
39235
- "title": "Oracle Database",
39236
- "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.oracledb/index.md",
39237
- "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.oracledb/index.md",
39235
+ "title": "Postgres",
39236
+ "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.postgres/index.md",
39237
+ "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.postgres/index.md",
39238
39238
  "category": "integrations",
39239
39239
  "subcategory": "app-nodes",
39240
- "nodeName": "oracledb",
39241
- "nodeType": "n8n-nodes-base.oracledb",
39240
+ "nodeName": "postgres",
39241
+ "nodeType": "n8n-nodes-base.postgres",
39242
39242
  "content": {
39243
- "markdown": "# Oracle Database node\n\nUse the Oracle Database node to automate work in Oracle Database, and integrate Oracle Database with other applications. n8n has built-in support for a wide range of Oracle Database features which includes executing an SQL statement, fetching, inserting, updating or deleting data from Oracle Database. This node uses the [node-oracledb driver](https://github.com/oracle/node-oracledb) internally.\n\nOn this page, you'll find a list of operations the Oracle Database node supports and links to more resources.\n\nNote\n\nRefer to [Oracle Database credentials](../../credentials/oracledb/) for guidance on setting up authentication.\n\nRequires Oracle Database **19c or later**. For advanced Oracle Database features like Transparent Application Continuity (TAC) and Sharding, also requires Oracle Client Libraries **19c or later**.\n\n## Operations\n\n- [**Delete**](#delete): Delete an entire table or rows in a table\n- [**Execute SQL**](#execute-sql): Execute an SQL statement\n- [**Insert**](#insert): Insert rows in a table\n- [**Insert or Update**](#insert-or-update): Insert or update rows in a table\n- [**Select**](#select): Select rows from a table\n- [**Update**](#update): Update rows in a table\n\n### Delete\n\nUse this operation to delete an entire table or rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Oracle Database credential](../../credentials/oracledb/).\n- **Operation**: Select **Delete**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list, or select **By Name** to enter the table name.\n- **Command**: The deletion action to take:\n - **Truncate**: Removes the table's data but preserves the table's structure.\n - **Delete**: Delete the rows that match the \"Select Rows\" condition. If you don't select anything, Oracle Database deletes all rows.\n - **Select Rows**: Define a **Column**, **Operator**, and **Value** to match rows on. The value can be passed as JSON using expression or string.\n - **Combine Conditions**: How to combine the conditions in \"Select Rows\". The **AND** requires all conditions to be true, while **OR** requires at least one condition to be true.\n - **Drop**: Deletes the table's data and structure permanently.\n\n#### Delete options\n\n- **Auto Commit**: When this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **Statement Batching**: The way to send statements to the database:\n - **Single Statement**: A single statement for all incoming items.\n - **Independently**: Execute one statement per incoming item of the execution.\n - **Transaction**: Execute all statements in a transaction. If a failure occurs, Oracle Database rolls back all changes.\n\n### Execute SQL\n\nUse this operation to execute an SQL statement.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Oracle Database credential](../../credentials/oracledb/).\n\n- **Operation**: Execute SQL **Execute SQL**.\n\n- **Statement**: The SQL statement to execute. You can use n8n [expressions](../../../../data/expressions/) and positional parameters like `:1`, `:2`, or named parameters like `:name`, `:id` to use with [Use bind parameters](#use-bind-parameters). To run a PL/SQL procedure, for example `demo`, you can use:\n\n ```\n BEGIN\n demo;\n END;\n ```\n\n#### Execute Statement options\n\n- **Auto Commit**: When this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **Bind Variable Placeholder Values**: Enter the values for the bind parameters used in the statement [Use bind parameters](#use-bind-parameters).\n- **Output Numbers As String**: Indicates if the numbers should be retrieved as a String.\n- **Fetch Array Size**: This property is a number that sets the size of an internal buffer used for fetching query rows from Oracle Database. Changing it may affect query performance but does not affect how many rows are returned to the application.\n- **Number of Rows to Prefetch**: This property is a query tuning option to set the number of additional rows the underlying Oracle driver fetches during the internal initial statement execution phase of a query.\n\n### Insert\n\nUse this operation to insert rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Oracle Database credential](../../credentials/oracledb/).\n- **Operation**: Select **Insert**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list, or select **By Name** to enter the table name.\n- **Mapping Column Mode**: How to map column names to incoming data:\n - **Map Each Column Manually**: Select the values to use for each column [Use n8n expressions for bind values](#use-n8n-expressions-for-bind-values).\n - **Map Automatically**: Automatically map incoming data to matching column names in Oracle Database. The incoming data field names must match the column names in Oracle Database for this to work. If necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### Insert options\n\n- **Auto Commit**: When this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **Output Columns**: Choose which columns to output. You can select from a list of available columns or specify IDs using [expressions](../../../../data/expressions/).\n- **Statement Batching**: The way to send statements to the database:\n - **Single Statement**: A single statement for all incoming items.\n - **Independently**: Execute one statement per incoming item of the execution.\n - **Transaction**: Execute all statements in a transaction. If a failure occurs, Oracle Database rolls back all changes.\n\n### Insert or Update\n\nUse this operation to insert or update rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Oracle Database credential](../../credentials/oracledb/).\n- **Operation**: Select **Insert or Update**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list, or select **By Name** to enter the table name.\n- **Mapping Column Mode**: How to map column names to incoming data:\n - **Map Each Column Manually**: Select the values to use for each column [Use n8n expressions for bind values](#use-n8n-expressions-for-bind-values).\n - **Map Automatically**: Automatically map incoming data to matching column names in Oracle Database. The incoming data field names must match the column names in Oracle Database for this to work. If necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### Insert or Update options\n\n- **Auto Commit**: When this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **Output Columns**: Choose which columns to output. You can select from a list of available columns or specify IDs using [expressions](../../../../data/expressions/).\n- **Statement Batching**: The way to send statements to the database:\n - **Single Statement**: A single statement for all incoming items.\n - **Independently**: Execute one statement per incoming item of the execution.\n - **Transaction**: Execute all statements in a transaction. If a failure occurs, Oracle Database rolls back all changes.\n\n### Select\n\nUse this operation to select rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Oracle Database credential](../../credentials/oracledb/).\n- **Operation**: Select **Select**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list, or select **By Name** to enter the table name.\n- **Return All**: Whether to return all results or only up to a given limit.\n- **Limit**: The maximum number of items to return when **Return All** is disabled.\n- **Select Rows**: Set the conditions to select rows. Define a **Column**, **Operator**, and **Value**(as `json`) to match rows on. The **Value** can vary by type — for example with Fixed mode:\n - String: \"hello\", hellowithoutquotes, \"hello with space\"\n - Number: 12\n - JSON: { \"key\": \"val\" }\n\nIf you don't select anything, Oracle Database selects all rows.\n\n- **Combine Conditions**: How to combine the conditions in **Select Rows**. The **AND** requires all conditions to be true, while **OR** requires at least one condition to be true.\n- **Sort**: Choose how to sort the selected rows. Choose a **Column** from a list or by ID and a sort **Direction**.\n\n#### Select options\n\n- **Auto Commit**: When this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **Output Numbers As String**: Indicates if the numbers should be retrieved as a String.\n- **Fetch Array Size**: This property is a number that sets the size of an internal buffer used for fetching query rows from Oracle Database. Changing it may affect query performance but does not affect how many rows are returned to the application.\n- **Number of Rows to Prefetch**: This property is a query tuning option to set the number of additional rows the underlying Oracle driver fetches during the internal initial statement execution phase of a query.\n\n### Update\n\nUse this operation to update rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Oracle Database credential](../../credentials/oracledb/).\n- **Operation**: Select **Update**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list, or select **By Name** to enter the table name.\n- **Mapping Column Mode**: How to map column names to incoming data:\n - **Map Each Column Manually**: Select the values to use for each column [Use n8n expressions for bind values](#use-n8n-expressions-for-bind-values).\n - **Map Automatically**: Automatically map incoming data to matching column names in Oracle Database. The incoming data field names must match the column names in Oracle Database for this to work. If necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### Update options\n\n- **Auto Commit**: When this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **Output Columns**: Choose which columns to output. You can select from a list of available columns or specify IDs using [expressions](../../../../data/expressions/).\n- **Statement Batching**: The way to send statements to the database:\n - **Single Statement**: A single statement for all incoming items.\n - **Independently**: Execute one statement per incoming item of the execution.\n - **Transaction**: Execute all statements in a transaction. If a failure occurs, Oracle Database rolls back all changes.\n\n## Related resources\n\nRefer to [SQL Language Reference](https://www.oracle.com/pls/topic/lookup?ctx=dblatest&id=SQLRF) for more information about the service.\n\nRefer to [node-oracledb documentation](https://node-oracledb.readthedocs.io/en/latest/) for more information about the node-oracledb driver.\n\n## Use bind parameters\n\nWhen creating a statement to run on an Oracle database instance, you can use the **Bind Variable Placeholder Values** field in the **Options** section to load data into the statement. n8n sanitizes data in statement parameters, which prevents SQL injection.\n\nFor example, you would want to find specific fruits by their color. Given the following input data:\n\n```\n[\n {\n \"FRUIT_ID\": 1,\n \"FRUIT_NAME\": \"Apple\",\n \"COLOR\": \"Red\" \n },\n {\n \"FRUIT_ID\": 2,\n \"FRUIT_NAME\": \"Banana\",\n \"COLOR\": \"Yellow\"\n }\n]\n```\n\nYou can write a statement like:\n\n```\nSELECT * FROM FRUITS WHERE COLOR = :col\n```\n\nThen in **Bind Variable Placeholder Values**, provide the field values to use. You can provide fixed values or expressions. For this example, use expressions so the node can pull the color from each input item in turn:\n\n```\n// fruits is an example table name\nfruits, {{ $json.color }}\n```\n\n## Use n8n Expressions for bind values\n\nFor **Values to Send**, you can provide inputs using n8n Expressions. Below are examples for different data types — you can either enter constant values or reference fields from previous items (`$json`):\n\n### JSON\n\n- Constant: `{{ { k1: \"v1\", k2: \"v2\" } }}`\n- From a previous item: `{{ $json.COL_JSON }}`\n\n### VECTOR\n\n- Constant: `{{ [1, 2, 3, 4.5] }}`\n- From a previous item: `{{ $json.COL_VECTOR }}`\n\n### BLOB\n\n- Constant: `{{ [94, 87, 34] }}` or `{{ ' BLOB data string' }}`\n- From a previous item: `{{ $json.COL_BLOB }}`\n\n### RAW\n\n- Constant: `{{ [94, 87, 34] }}`\n- From a previous item: `{{ $json.COL_RAW }}`\n\n### BOOLEAN\n\n- Constant: `{{ true }}`\n- From a previous item: `{{ $json.COL_BOOLEAN }}`\n\n### NUMBER\n\n- Constant: `1234`\n- From a previous item: `{{ $json.COL_NUMBER }}`\n\n## VARCHAR\n\n- Constant: `' Hello World '`\n- From a previous item: `{{ $json.COL_CHAR }}`\n\nThese examples assume JSON keys (e.g. `COL_JSON, COL_VECTOR`) map directly to the respective SQL column types.\n",
39244
- "excerpt": "# Oracle Database node Use the Oracle Database node to automate work in Oracle Database, and integrate Oracle Database with other applications. n8n has built-in support for a wide range of Oracle Database features which includes executing an SQL statement, fetching, inserting, updating or deleting data from Oracle Database. This node uses the [node-oracledb driver](https://github.com/oracle/node-oracledb) internally. On this page, you'll find a list of operations the Oracle Database node suppo...",
39243
+ "markdown": "# Postgres node\n\nUse the Postgres node to automate work in Postgres, and integrate Postgres with other applications. n8n has built-in support for a wide range of Postgres features, including executing queries, as well as inserting and updating rows in a database.\n\nOn this page, you'll find a list of operations the Postgres node supports and links to more resources.\n\nCredentials\n\nRefer to [Postgres credentials](../../credentials/postgres/) for guidance on setting up authentication.\n\nThis node can be used as an AI tool\n\nThis node can be used to enhance the capabilities of an AI agent. When used in this way, many parameters can be set automatically, or with information directed by AI - find out more in the [AI tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/).\n\n## Operations\n\n- [**Delete**](#delete): Delete an entire table or rows in a table\n- [**Execute Query**](#execute-query): Execute an SQL query\n- [**Insert**](#insert): Insert rows in a table\n- [**Insert or Update**](#insert-or-update): Insert or update rows in a table\n- [**Select**](#select): Select rows from a table\n- [**Update**](#update): Update rows in a table\n\n### Delete\n\nUse this operation to delete an entire table or rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Postgres credential](../../credentials/postgres/).\n- **Operation**: Select **Delete**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list or **By Name** to enter the table name.\n- **Command**: The deletion action to take:\n - **Truncate**: Removes the table's data but preserves the table's structure.\n - **Restart Sequences**: Whether to reset auto increment columns to their initial values as part of the Truncate process.\n - **Delete**: Delete the rows that match the \"Select Rows\" condition. If you don't select anything, Postgres deletes all rows.\n - **Select Rows**: Define a **Column**, **Operator**, and **Value** to match rows on.\n - **Combine Conditions**: How to combine the conditions in \"Select Rows\". **AND** requires all conditions to be true, while **OR** requires at least one condition to be true.\n - **Drop**: Deletes the table's data and structure permanently.\n\n#### Delete options\n\n- **Cascade**: Whether to also drop all objects that depend on the table, like views and sequences. Available if using **Truncate** or **Drop** commands.\n- **Connection Timeout**: The number of seconds to try to connect to the database.\n- **Delay Closing Idle Connection**: The number of seconds to wait before considering idle connections eligible for closing.\n- **Query Batching**: The way to send queries to the database:\n - **Single Query**: A single query for all incoming items.\n - **Independently**: Execute one query per incoming item of the execution.\n - **Transaction**: Execute all queries in a transaction. If a failure occurs, Postgres rolls back all changes.\n- **Output Large-Format Numbers As**: The format to output `NUMERIC` and `BIGINT` columns as:\n - **Numbers**: Use this for standard numbers.\n - **Text**: Use this if you expect numbers longer than 16 digits. Without this, numbers may be incorrect.\n\n### Execute Query\n\nUse this operation to execute an SQL query.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Postgres credential](../../credentials/postgres/).\n- **Operation**: Select **Execute Query**.\n- **Query**: The SQL query to execute. You can use n8n [expressions](../../../../data/expressions/) and tokens like `$1`, `$2`, and `$3` to build [prepared statements](https://www.postgresql.org/docs/current/sql-prepare.html) to use with [query parameters](#use-query-parameters).\n\n#### Execute Query options\n\n- **Connection Timeout**: The number of seconds to try to connect to the database.\n- **Delay Closing Idle Connection**: The number of seconds to wait before considering idle connections eligible for closing.\n- **Query Batching**: The way to send queries to the database:\n - **Single Query**: A single query for all incoming items.\n - **Independently**: Execute one query per incoming item of the execution.\n - **Transaction**: Execute all queries in a transaction. If a failure occurs, Postgres rolls back all changes.\n- **Query Parameters**: A comma-separated list of values that you want to use as [query parameters](#use-query-parameters).\n- **Output Large-Format Numbers As**: The format to output `NUMERIC` and `BIGINT` columns as:\n - **Numbers**: Use this for standard numbers.\n - **Text**: Use this if you expect numbers longer than 16 digits. Without this, numbers may be incorrect.\n- **Replace Empty Strings with NULL**: Whether to replace empty strings with NULL in input. This may be useful when working with data exported from spreadsheet software.\n\n### Insert\n\nUse this operation to insert rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Postgres credential](../../credentials/postgres/).\n- **Operation**: Select **Insert**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list or **By Name** to enter the table name.\n- **Mapping Column Mode**: How to map column names to incoming data:\n - **Map Each Column Manually**: Select the values to use for each column.\n - **Map Automatically**: Automatically map incoming data to matching column names in Postgres. The incoming data field names must match the column names in Postgres for this to work. If necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### Insert options\n\n- **Connection Timeout**: The number of seconds to try to connect to the database.\n- **Delay Closing Idle Connection**: The number of seconds to wait before considering idle connections eligible for closing.\n- **Query Batching**: The way to send queries to the database:\n - **Single Query**: A single query for all incoming items.\n - **Independently**: Execute one query per incoming item of the execution.\n - **Transaction**: Execute all queries in a transaction. If a failure occurs, Postgres rolls back all changes.\n- **Output Columns**: Choose which columns to output. You can select from a list of available columns or specify IDs using [expressions](../../../../data/expressions/).\n- **Output Large-Format Numbers As**: The format to output `NUMERIC` and `BIGINT` columns as:\n - **Numbers**: Use this for standard numbers.\n - **Text**: Use this if you expect numbers longer than 16 digits. Without this, numbers may be incorrect.\n- **Skip on Conflict**: Whether to skip the row if the insert violates a unique or exclusion constraint instead of throwing an error.\n- **Replace Empty Strings with NULL**: Whether to replace empty strings with NULL in input. This may be useful when working with data exported from spreadsheet software.\n\n### Insert or Update\n\nUse this operation to insert or update rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Postgres credential](../../credentials/postgres/).\n- **Operation**: Select **Insert or Update**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list or **By Name** to enter the table name.\n- **Mapping Column Mode**: How to map column names to incoming data:\n - **Map Each Column Manually**: Select the values to use for each column.\n - **Map Automatically**: Automatically map incoming data to matching column names in Postgres. The incoming data field names must match the column names in Postgres for this to work. If necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### Insert or Update options\n\n- **Connection Timeout**: The number of seconds to try to connect to the database.\n- **Delay Closing Idle Connection**: The number of seconds to wait before considering idle connections eligible for closing.\n- **Query Batching**: The way to send queries to the database:\n - **Single Query**: A single query for all incoming items.\n - **Independently**: Execute one query per incoming item of the execution.\n - **Transaction**: Execute all queries in a transaction. If a failure occurs, Postgres rolls back all changes.\n- **Output Columns**: Choose which columns to output. You can select from a list of available columns or specify IDs using [expressions](../../../../data/expressions/).\n- **Output Large-Format Numbers As**: The format to output `NUMERIC` and `BIGINT` columns as:\n - **Numbers**: Use this for standard numbers.\n - **Text**: Use this if you expect numbers longer than 16 digits. Without this, numbers may be incorrect.\n- **Replace Empty Strings with NULL**: Whether to replace empty strings with NULL in input. This may be useful when working with data exported from spreadsheet software.\n\n### Select\n\nUse this operation to select rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Postgres credential](../../credentials/postgres/).\n- **Operation**: Select **Select**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list or **By Name** to enter the table name.\n- **Return All**: Whether to return all results or only up to a given limit.\n- **Limit**: The maximum number of items to return when **Return All** is disabled.\n- **Select Rows**: Set the conditions to select rows. Define a **Column**, **Operator**, and **Value** to match rows on. If you don't select anything, Postgres selects all rows.\n- **Combine Conditions**: How to combine the conditions in **Select Rows**. **AND** requires all conditions to be true, while **OR** requires at least one condition to be true.\n- **Sort**: Choose how to sort the selected rows. Choose a **Column** from a list or by ID and a sort **Direction**.\n\n#### Select options\n\n- **Connection Timeout**: The number of seconds to try to connect to the database.\n- **Delay Closing Idle Connection**: The number of seconds to wait before considering idle connections eligible for closing.\n- **Query Batching**: The way to send queries to the database:\n - **Single Query**: A single query for all incoming items.\n - **Independently**: Execute one query per incoming item of the execution.\n - **Transaction**: Execute all queries in a transaction. If a failure occurs, Postgres rolls back all changes.\n- **Output Columns**: Choose which columns to output. You can select from a list of available columns or specify IDs using [expressions](../../../../data/expressions/).\n- **Output Large-Format Numbers As**: The format to output `NUMERIC` and `BIGINT` columns as:\n - **Numbers**: Use this for standard numbers.\n - **Text**: Use this if you expect numbers longer than 16 digits. Without this, numbers may be incorrect.\n\n### Update\n\nUse this operation to update rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Postgres credential](../../credentials/postgres/).\n- **Operation**: Select **Update**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list or **By Name** to enter the table name.\n- **Mapping Column Mode**: How to map column names to incoming data:\n - **Map Each Column Manually**: Select the values to use for each column.\n - **Map Automatically**: Automatically map incoming data to matching column names in Postgres. The incoming data field names must match the column names in Postgres for this to work. If necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### Update options\n\n- **Connection Timeout**: The number of seconds to try to connect to the database.\n- **Delay Closing Idle Connection**: The number of seconds to wait before considering idle connections eligible for closing.\n- **Query Batching**: The way to send queries to the database:\n - **Single Query**: A single query for all incoming items.\n - **Independently**: Execute one query per incoming item of the execution.\n - **Transaction**: Execute all queries in a transaction. If a failure occurs, Postgres rolls back all changes.\n- **Output Columns**: Choose which columns to output. You can select from a list of available columns or specify IDs using [expressions](../../../../data/expressions/).\n- **Output Large-Format Numbers As**: The format to output `NUMERIC` and `BIGINT` columns as:\n - **Numbers**: Use this for standard numbers.\n - **Text**: Use this if you expect numbers longer than 16 digits. Without this, numbers may be incorrect.\n- **Replace Empty Strings with NULL**: Whether to replace empty strings with NULL in input. This may be useful when working with data exported from spreadsheet software.\n\n## Templates and examples\n\n**Chat with Postgresql Database**\n\nby KumoHQ\n\n[View template details](https://n8n.io/workflows/2859-chat-with-postgresql-database/)\n\n**Generate Instagram Content from Top Trends with AI Image Generation**\n\nby mustafa kendigüzel\n\n[View template details](https://n8n.io/workflows/2803-generate-instagram-content-from-top-trends-with-ai-image-generation/)\n\n**AI Customer Support Assistant · WhatsApp Ready · Works for Any Business**\n\nby Matt F.\n\n[View template details](https://n8n.io/workflows/3859-ai-customer-support-assistant-whatsapp-ready-works-for-any-business/)\n\n[Browse Postgres integration templates](https://n8n.io/integrations/postgres/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nn8n provides a trigger node for Postgres. You can find the trigger node docs [here](../../trigger-nodes/n8n-nodes-base.postgrestrigger/).\n\n## Use query parameters\n\nWhen creating a query to run on a Postgres database, you can use the **Query Parameters** field in the **Options** section to load data into the query. n8n sanitizes data in query parameters, which prevents SQL injection.\n\nFor example, you want to find a person by their email address. Given the following input data:\n\n```\n[\n {\n \"email\": \"alex@example.com\",\n \"name\": \"Alex\",\n \"age\": 21 \n },\n {\n \"email\": \"jamie@example.com\",\n \"name\": \"Jamie\",\n \"age\": 33 \n }\n]\n```\n\nYou can write a query like:\n\n```\nSELECT * FROM $1:name WHERE email = $2;\n```\n\nThen in **Query Parameters**, provide the field values to use. You can provide fixed values or expressions. For this example, use expressions so the node can pull the email address from each input item in turn:\n\n```\n// users is an example table name\n{{ [ 'users', $json.email ] }}\n```\n\n## Common issues\n\nFor common questions or issues and suggested solutions, refer to [Common issues](common-issues/).\n",
39244
+ "excerpt": "# Postgres node Use the Postgres node to automate work in Postgres, and integrate Postgres with other applications. n8n has built-in support for a wide range of Postgres features, including executing queries, as well as inserting and updating rows in a database. On this page, you'll find a list of operations the Postgres node supports and links to more resources. Credentials Refer to [Postgres credentials](../../credentials/postgres/) for guidance on setting up authentication. This node can...",
39245
39245
  "sections": [
39246
39246
  {
39247
- "title": "Oracle Database node",
39247
+ "title": "Postgres node",
39248
39248
  "level": 1,
39249
- "content": "Use the Oracle Database node to automate work in Oracle Database, and integrate Oracle Database with other applications. n8n has built-in support for a wide range of Oracle Database features which includes executing an SQL statement, fetching, inserting, updating or deleting data from Oracle Database. This node uses the [node-oracledb driver](https://github.com/oracle/node-oracledb) internally.\n\nOn this page, you'll find a list of operations the Oracle Database node supports and links to more resources.\n\nNote\n\nRefer to [Oracle Database credentials](../../credentials/oracledb/) for guidance on setting up authentication.\n\nRequires Oracle Database **19c or later**. For advanced Oracle Database features like Transparent Application Continuity (TAC) and Sharding, also requires Oracle Client Libraries **19c or later**."
39249
+ "content": "Use the Postgres node to automate work in Postgres, and integrate Postgres with other applications. n8n has built-in support for a wide range of Postgres features, including executing queries, as well as inserting and updating rows in a database.\n\nOn this page, you'll find a list of operations the Postgres node supports and links to more resources.\n\nCredentials\n\nRefer to [Postgres credentials](../../credentials/postgres/) for guidance on setting up authentication.\n\nThis node can be used as an AI tool\n\nThis node can be used to enhance the capabilities of an AI agent. When used in this way, many parameters can be set automatically, or with information directed by AI - find out more in the [AI tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/)."
39250
39250
  }
39251
39251
  ]
39252
39252
  },
39253
39253
  "metadata": {
39254
39254
  "keywords": [
39255
- "oracle",
39256
- "database",
39255
+ "postgres",
39257
39256
  "node",
39258
39257
  "operations",
39259
39258
  "delete",
39260
39259
  "options",
39261
39260
  "execute",
39262
- "statement",
39261
+ "query",
39263
39262
  "insert",
39264
39263
  "update",
39265
39264
  "select",
39265
+ "templates",
39266
+ "examples",
39266
39267
  "related",
39267
39268
  "resources",
39268
- "bind",
39269
39269
  "parameters",
39270
- "expressions",
39271
- "values",
39272
- "json",
39273
- "vector",
39274
- "blob",
39275
- "boolean",
39276
- "number",
39277
- "varchar"
39270
+ "common",
39271
+ "issues"
39278
39272
  ],
39279
39273
  "useCases": [],
39280
39274
  "operations": [
39281
39275
  ""
39282
39276
  ],
39283
- "codeExamples": 4,
39277
+ "codeExamples": 3,
39284
39278
  "complexity": "intermediate",
39285
39279
  "readingTime": "12 min",
39286
- "contentLength": 14533,
39280
+ "contentLength": 15886,
39287
39281
  "relatedPages": []
39288
39282
  },
39289
39283
  "searchIndex": {
39290
- "fullText": "oracle database # oracle database node\n\nuse the oracle database node to automate work in oracle database, and integrate oracle database with other applications. n8n has built-in support for a wide range of oracle database features which includes executing an sql statement, fetching, inserting, updating or deleting data from oracle database. this node uses the [node-oracledb driver](https://github.com/oracle/node-oracledb) internally.\n\non this page, you'll find a list of operations the oracle database node supports and links to more resources.\n\nnote\n\nrefer to [oracle database credentials](../../credentials/oracledb/) for guidance on setting up authentication.\n\nrequires oracle database **19c or later**. for advanced oracle database features like transparent application continuity (tac) and sharding, also requires oracle client libraries **19c or later**.\n\n## operations\n\n- [**delete**](#delete): delete an entire table or rows in a table\n- [**execute sql**](#execute-sql): execute an sql statement\n- [**insert**](#insert): insert rows in a table\n- [**insert or update**](#insert-or-update): insert or update rows in a table\n- [**select**](#select): select rows from a table\n- [**update**](#update): update rows in a table\n\n### delete\n\nuse this operation to delete an entire table or rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [oracle database credential](../../credentials/oracledb/).\n- **operation**: select **delete**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or **by name** to enter the schema name.\n- **table**: choose the table that you want to work on. select **from list** to choose the table from the dropdown list, or select **by name** to enter the table name.\n- **command**: the deletion action to take:\n - **truncate**: removes the table's data but preserves the table's structure.\n - **delete**: delete the rows that match the \"select rows\" condition. if you don't select anything, oracle database deletes all rows.\n - **select rows**: define a **column**, **operator**, and **value** to match rows on. the value can be passed as json using expression or string.\n - **combine conditions**: how to combine the conditions in \"select rows\". the **and** requires all conditions to be true, while **or** requires at least one condition to be true.\n - **drop**: deletes the table's data and structure permanently.\n\n#### delete options\n\n- **auto commit**: when this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **statement batching**: the way to send statements to the database:\n - **single statement**: a single statement for all incoming items.\n - **independently**: execute one statement per incoming item of the execution.\n - **transaction**: execute all statements in a transaction. if a failure occurs, oracle database rolls back all changes.\n\n### execute sql\n\nuse this operation to execute an sql statement.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [oracle database credential](../../credentials/oracledb/).\n\n- **operation**: execute sql **execute sql**.\n\n- **statement**: the sql statement to execute. you can use n8n [expressions](../../../../data/expressions/) and positional parameters like `:1`, `:2`, or named parameters like `:name`, `:id` to use with [use bind parameters](#use-bind-parameters). to run a pl/sql procedure, for example `demo`, you can use:\n\n ```\n begin\n demo;\n end;\n ```\n\n#### execute statement options\n\n- **auto commit**: when this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **bind variable placeholder values**: enter the values for the bind parameters used in the statement [use bind parameters](#use-bind-parameters).\n- **output numbers as string**: indicates if the numbers should be retrieved as a string.\n- **fetch array size**: this property is a number that sets the size of an internal buffer used for fetching query rows from oracle database. changing it may affect query performance but does not affect how many rows are returned to the application.\n- **number of rows to prefetch**: this property is a query tuning option to set the number of additional rows the underlying oracle driver fetches during the internal initial statement execution phase of a query.\n\n### insert\n\nuse this operation to insert rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [oracle database credential](../../credentials/oracledb/).\n- **operation**: select **insert**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or **by name** to enter the schema name.\n- **table**: choose the table that you want to work on. select **from list** to choose the table from the dropdown list, or select **by name** to enter the table name.\n- **mapping column mode**: how to map column names to incoming data:\n - **map each column manually**: select the values to use for each column [use n8n expressions for bind values](#use-n8n-expressions-for-bind-values).\n - **map automatically**: automatically map incoming data to matching column names in oracle database. the incoming data field names must match the column names in oracle database for this to work. if necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### insert options\n\n- **auto commit**: when this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **output columns**: choose which columns to output. you can select from a list of available columns or specify ids using [expressions](../../../../data/expressions/).\n- **statement batching**: the way to send statements to the database:\n - **single statement**: a single statement for all incoming items.\n - **independently**: execute one statement per incoming item of the execution.\n - **transaction**: execute all statements in a transaction. if a failure occurs, oracle database rolls back all changes.\n\n### insert or update\n\nuse this operation to insert or update rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [oracle database credential](../../credentials/oracledb/).\n- **operation**: select **insert or update**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or **by name** to enter the schema name.\n- **table**: choose the table that you want to work on. select **from list** to choose the table from the dropdown list, or select **by name** to enter the table name.\n- **mapping column mode**: how to map column names to incoming data:\n - **map each column manually**: select the values to use for each column [use n8n expressions for bind values](#use-n8n-expressions-for-bind-values).\n - **map automatically**: automatically map incoming data to matching column names in oracle database. the incoming data field names must match the column names in oracle database for this to work. if necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### insert or update options\n\n- **auto commit**: when this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **output columns**: choose which columns to output. you can select from a list of available columns or specify ids using [expressions](../../../../data/expressions/).\n- **statement batching**: the way to send statements to the database:\n - **single statement**: a single statement for all incoming items.\n - **independently**: execute one statement per incoming item of the execution.\n - **transaction**: execute all statements in a transaction. if a failure occurs, oracle database rolls back all changes.\n\n### select\n\nuse this operation to select rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [oracle database credential](../../credentials/oracledb/).\n- **operation**: select **select**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or **by name** to enter the schema name.\n- **table**: choose the table that you want to work on. select **from list** to choose the table from the dropdown list, or select **by name** to enter the table name.\n- **return all**: whether to return all results or only up to a given limit.\n- **limit**: the maximum number of items to return when **return all** is disabled.\n- **select rows**: set the conditions to select rows. define a **column**, **operator**, and **value**(as `json`) to match rows on. the **value** can vary by type — for example with fixed mode:\n - string: \"hello\", hellowithoutquotes, \"hello with space\"\n - number: 12\n - json: { \"key\": \"val\" }\n\nif you don't select anything, oracle database selects all rows.\n\n- **combine conditions**: how to combine the conditions in **select rows**. the **and** requires all conditions to be true, while **or** requires at least one condition to be true.\n- **sort**: choose how to sort the selected rows. choose a **column** from a list or by id and a sort **direction**.\n\n#### select options\n\n- **auto commit**: when this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **output numbers as string**: indicates if the numbers should be retrieved as a string.\n- **fetch array size**: this property is a num",
39284
+ "fullText": "postgres # postgres node\n\nuse the postgres node to automate work in postgres, and integrate postgres with other applications. n8n has built-in support for a wide range of postgres features, including executing queries, as well as inserting and updating rows in a database.\n\non this page, you'll find a list of operations the postgres node supports and links to more resources.\n\ncredentials\n\nrefer to [postgres credentials](../../credentials/postgres/) for guidance on setting up authentication.\n\nthis node can be used as an ai tool\n\nthis node can be used to enhance the capabilities of an ai agent. when used in this way, many parameters can be set automatically, or with information directed by ai - find out more in the [ai tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/).\n\n## operations\n\n- [**delete**](#delete): delete an entire table or rows in a table\n- [**execute query**](#execute-query): execute an sql query\n- [**insert**](#insert): insert rows in a table\n- [**insert or update**](#insert-or-update): insert or update rows in a table\n- [**select**](#select): select rows from a table\n- [**update**](#update): update rows in a table\n\n### delete\n\nuse this operation to delete an entire table or rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [postgres credential](../../credentials/postgres/).\n- **operation**: select **delete**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or **by name** to enter the schema name.\n- **table**: choose the table that you want to work on. select **from list** to choose the table from the dropdown list or **by name** to enter the table name.\n- **command**: the deletion action to take:\n - **truncate**: removes the table's data but preserves the table's structure.\n - **restart sequences**: whether to reset auto increment columns to their initial values as part of the truncate process.\n - **delete**: delete the rows that match the \"select rows\" condition. if you don't select anything, postgres deletes all rows.\n - **select rows**: define a **column**, **operator**, and **value** to match rows on.\n - **combine conditions**: how to combine the conditions in \"select rows\". **and** requires all conditions to be true, while **or** requires at least one condition to be true.\n - **drop**: deletes the table's data and structure permanently.\n\n#### delete options\n\n- **cascade**: whether to also drop all objects that depend on the table, like views and sequences. available if using **truncate** or **drop** commands.\n- **connection timeout**: the number of seconds to try to connect to the database.\n- **delay closing idle connection**: the number of seconds to wait before considering idle connections eligible for closing.\n- **query batching**: the way to send queries to the database:\n - **single query**: a single query for all incoming items.\n - **independently**: execute one query per incoming item of the execution.\n - **transaction**: execute all queries in a transaction. if a failure occurs, postgres rolls back all changes.\n- **output large-format numbers as**: the format to output `numeric` and `bigint` columns as:\n - **numbers**: use this for standard numbers.\n - **text**: use this if you expect numbers longer than 16 digits. without this, numbers may be incorrect.\n\n### execute query\n\nuse this operation to execute an sql query.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [postgres credential](../../credentials/postgres/).\n- **operation**: select **execute query**.\n- **query**: the sql query to execute. you can use n8n [expressions](../../../../data/expressions/) and tokens like `$1`, `$2`, and `$3` to build [prepared statements](https://www.postgresql.org/docs/current/sql-prepare.html) to use with [query parameters](#use-query-parameters).\n\n#### execute query options\n\n- **connection timeout**: the number of seconds to try to connect to the database.\n- **delay closing idle connection**: the number of seconds to wait before considering idle connections eligible for closing.\n- **query batching**: the way to send queries to the database:\n - **single query**: a single query for all incoming items.\n - **independently**: execute one query per incoming item of the execution.\n - **transaction**: execute all queries in a transaction. if a failure occurs, postgres rolls back all changes.\n- **query parameters**: a comma-separated list of values that you want to use as [query parameters](#use-query-parameters).\n- **output large-format numbers as**: the format to output `numeric` and `bigint` columns as:\n - **numbers**: use this for standard numbers.\n - **text**: use this if you expect numbers longer than 16 digits. without this, numbers may be incorrect.\n- **replace empty strings with null**: whether to replace empty strings with null in input. this may be useful when working with data exported from spreadsheet software.\n\n### insert\n\nuse this operation to insert rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [postgres credential](../../credentials/postgres/).\n- **operation**: select **insert**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or **by name** to enter the schema name.\n- **table**: choose the table that you want to work on. select **from list** to choose the table from the dropdown list or **by name** to enter the table name.\n- **mapping column mode**: how to map column names to incoming data:\n - **map each column manually**: select the values to use for each column.\n - **map automatically**: automatically map incoming data to matching column names in postgres. the incoming data field names must match the column names in postgres for this to work. if necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### insert options\n\n- **connection timeout**: the number of seconds to try to connect to the database.\n- **delay closing idle connection**: the number of seconds to wait before considering idle connections eligible for closing.\n- **query batching**: the way to send queries to the database:\n - **single query**: a single query for all incoming items.\n - **independently**: execute one query per incoming item of the execution.\n - **transaction**: execute all queries in a transaction. if a failure occurs, postgres rolls back all changes.\n- **output columns**: choose which columns to output. you can select from a list of available columns or specify ids using [expressions](../../../../data/expressions/).\n- **output large-format numbers as**: the format to output `numeric` and `bigint` columns as:\n - **numbers**: use this for standard numbers.\n - **text**: use this if you expect numbers longer than 16 digits. without this, numbers may be incorrect.\n- **skip on conflict**: whether to skip the row if the insert violates a unique or exclusion constraint instead of throwing an error.\n- **replace empty strings with null**: whether to replace empty strings with null in input. this may be useful when working with data exported from spreadsheet software.\n\n### insert or update\n\nuse this operation to insert or update rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [postgres credential](../../credentials/postgres/).\n- **operation**: select **insert or update**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or **by name** to enter the schema name.\n- **table**: choose the table that you want to work on. select **from list** to choose the table from the dropdown list or **by name** to enter the table name.\n- **mapping column mode**: how to map column names to incoming data:\n - **map each column manually**: select the values to use for each column.\n - **map automatically**: automatically map incoming data to matching column names in postgres. the incoming data field names must match the column names in postgres for this to work. if necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### insert or update options\n\n- **connection timeout**: the number of seconds to try to connect to the database.\n- **delay closing idle connection**: the number of seconds to wait before considering idle connections eligible for closing.\n- **query batching**: the way to send queries to the database:\n - **single query**: a single query for all incoming items.\n - **independently**: execute one query per incoming item of the execution.\n - **transaction**: execute all queries in a transaction. if a failure occurs, postgres rolls back all changes.\n- **output columns**: choose which columns to output. you can select from a list of available columns or specify ids using [expressions](../../../../data/expressions/).\n- **output large-format numbers as**: the format to output `numeric` and `bigint` columns as:\n - **numbers**: use this for standard numbers.\n - **text**: use this if you expect numbers longer than 16 digits. without this, numbers may be incorrect.\n- **replace empty strings with null**: whether to replace empty strings with null in input. this may be useful when working with data exported from spreadsheet software.\n\n### select\n\nuse this operation to select rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [postgres credential](../../credentials/postgres/).\n- **operation**: select **select**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or *",
39291
39285
  "importantTerms": [
39286
+ "query",
39292
39287
  "select",
39293
39288
  "table",
39294
- "oracle",
39295
- "from",
39296
- "database",
39297
- "statement",
39298
- "rows",
39289
+ "postgres",
39299
39290
  "this",
39291
+ "from",
39292
+ "numbers",
39300
39293
  "list",
39301
39294
  "choose",
39295
+ "with",
39302
39296
  "name",
39303
- "column",
39297
+ "rows",
39304
39298
  "data",
39299
+ "column",
39300
+ "incoming",
39301
+ "execute",
39305
39302
  "schema",
39303
+ "output",
39304
+ "columns",
39305
+ "parameters",
39306
+ "database",
39306
39307
  "enter",
39307
- "expressions",
39308
- "values",
39309
39308
  "node",
39310
- "execute",
39311
- "incoming",
39312
- "bind",
39313
- "parameters",
39314
- "work",
39315
39309
  "insert",
39310
+ "format",
39311
+ "work",
39316
39312
  "update",
39317
- "json",
39318
- "transaction",
39313
+ "queries",
39319
39314
  "that",
39320
- "oracledb",
39315
+ "number",
39321
39316
  "operation",
39322
39317
  "credential",
39323
- "automatically",
39324
- "execution",
39325
- "item",
39326
- "names",
39318
+ "connect",
39327
39319
  "want",
39328
- "true",
39329
- "with",
39320
+ "connection",
39321
+ "seconds",
39322
+ "closing",
39323
+ "idle",
39324
+ "single",
39325
+ "transaction",
39326
+ "expressions",
39327
+ "names",
39330
39328
  "dropdown",
39331
- "property",
39332
- "delete",
39333
- "number",
39334
- "columns",
39335
39329
  "credentials",
39336
39330
  "using",
39337
- "when",
39338
- "statements",
39339
- "single",
39340
- "output",
39341
- "query"
39331
+ "delete",
39332
+ "before",
39333
+ "whether",
39334
+ "replace",
39335
+ "empty"
39342
39336
  ]
39343
39337
  }
39344
39338
  },
39345
39339
  {
39346
39340
  "id": "page-0517",
39347
- "title": "Postgres",
39348
- "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.postgres/index.md",
39349
- "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.postgres/index.md",
39341
+ "title": "Oracle Database",
39342
+ "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.oracledb/index.md",
39343
+ "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.oracledb/index.md",
39350
39344
  "category": "integrations",
39351
39345
  "subcategory": "app-nodes",
39352
- "nodeName": "postgres",
39353
- "nodeType": "n8n-nodes-base.postgres",
39346
+ "nodeName": "oracledb",
39347
+ "nodeType": "n8n-nodes-base.oracledb",
39354
39348
  "content": {
39355
- "markdown": "# Postgres node\n\nUse the Postgres node to automate work in Postgres, and integrate Postgres with other applications. n8n has built-in support for a wide range of Postgres features, including executing queries, as well as inserting and updating rows in a database.\n\nOn this page, you'll find a list of operations the Postgres node supports and links to more resources.\n\nCredentials\n\nRefer to [Postgres credentials](../../credentials/postgres/) for guidance on setting up authentication.\n\nThis node can be used as an AI tool\n\nThis node can be used to enhance the capabilities of an AI agent. When used in this way, many parameters can be set automatically, or with information directed by AI - find out more in the [AI tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/).\n\n## Operations\n\n- [**Delete**](#delete): Delete an entire table or rows in a table\n- [**Execute Query**](#execute-query): Execute an SQL query\n- [**Insert**](#insert): Insert rows in a table\n- [**Insert or Update**](#insert-or-update): Insert or update rows in a table\n- [**Select**](#select): Select rows from a table\n- [**Update**](#update): Update rows in a table\n\n### Delete\n\nUse this operation to delete an entire table or rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Postgres credential](../../credentials/postgres/).\n- **Operation**: Select **Delete**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list or **By Name** to enter the table name.\n- **Command**: The deletion action to take:\n - **Truncate**: Removes the table's data but preserves the table's structure.\n - **Restart Sequences**: Whether to reset auto increment columns to their initial values as part of the Truncate process.\n - **Delete**: Delete the rows that match the \"Select Rows\" condition. If you don't select anything, Postgres deletes all rows.\n - **Select Rows**: Define a **Column**, **Operator**, and **Value** to match rows on.\n - **Combine Conditions**: How to combine the conditions in \"Select Rows\". **AND** requires all conditions to be true, while **OR** requires at least one condition to be true.\n - **Drop**: Deletes the table's data and structure permanently.\n\n#### Delete options\n\n- **Cascade**: Whether to also drop all objects that depend on the table, like views and sequences. Available if using **Truncate** or **Drop** commands.\n- **Connection Timeout**: The number of seconds to try to connect to the database.\n- **Delay Closing Idle Connection**: The number of seconds to wait before considering idle connections eligible for closing.\n- **Query Batching**: The way to send queries to the database:\n - **Single Query**: A single query for all incoming items.\n - **Independently**: Execute one query per incoming item of the execution.\n - **Transaction**: Execute all queries in a transaction. If a failure occurs, Postgres rolls back all changes.\n- **Output Large-Format Numbers As**: The format to output `NUMERIC` and `BIGINT` columns as:\n - **Numbers**: Use this for standard numbers.\n - **Text**: Use this if you expect numbers longer than 16 digits. Without this, numbers may be incorrect.\n\n### Execute Query\n\nUse this operation to execute an SQL query.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Postgres credential](../../credentials/postgres/).\n- **Operation**: Select **Execute Query**.\n- **Query**: The SQL query to execute. You can use n8n [expressions](../../../../data/expressions/) and tokens like `$1`, `$2`, and `$3` to build [prepared statements](https://www.postgresql.org/docs/current/sql-prepare.html) to use with [query parameters](#use-query-parameters).\n\n#### Execute Query options\n\n- **Connection Timeout**: The number of seconds to try to connect to the database.\n- **Delay Closing Idle Connection**: The number of seconds to wait before considering idle connections eligible for closing.\n- **Query Batching**: The way to send queries to the database:\n - **Single Query**: A single query for all incoming items.\n - **Independently**: Execute one query per incoming item of the execution.\n - **Transaction**: Execute all queries in a transaction. If a failure occurs, Postgres rolls back all changes.\n- **Query Parameters**: A comma-separated list of values that you want to use as [query parameters](#use-query-parameters).\n- **Output Large-Format Numbers As**: The format to output `NUMERIC` and `BIGINT` columns as:\n - **Numbers**: Use this for standard numbers.\n - **Text**: Use this if you expect numbers longer than 16 digits. Without this, numbers may be incorrect.\n- **Replace Empty Strings with NULL**: Whether to replace empty strings with NULL in input. This may be useful when working with data exported from spreadsheet software.\n\n### Insert\n\nUse this operation to insert rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Postgres credential](../../credentials/postgres/).\n- **Operation**: Select **Insert**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list or **By Name** to enter the table name.\n- **Mapping Column Mode**: How to map column names to incoming data:\n - **Map Each Column Manually**: Select the values to use for each column.\n - **Map Automatically**: Automatically map incoming data to matching column names in Postgres. The incoming data field names must match the column names in Postgres for this to work. If necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### Insert options\n\n- **Connection Timeout**: The number of seconds to try to connect to the database.\n- **Delay Closing Idle Connection**: The number of seconds to wait before considering idle connections eligible for closing.\n- **Query Batching**: The way to send queries to the database:\n - **Single Query**: A single query for all incoming items.\n - **Independently**: Execute one query per incoming item of the execution.\n - **Transaction**: Execute all queries in a transaction. If a failure occurs, Postgres rolls back all changes.\n- **Output Columns**: Choose which columns to output. You can select from a list of available columns or specify IDs using [expressions](../../../../data/expressions/).\n- **Output Large-Format Numbers As**: The format to output `NUMERIC` and `BIGINT` columns as:\n - **Numbers**: Use this for standard numbers.\n - **Text**: Use this if you expect numbers longer than 16 digits. Without this, numbers may be incorrect.\n- **Skip on Conflict**: Whether to skip the row if the insert violates a unique or exclusion constraint instead of throwing an error.\n- **Replace Empty Strings with NULL**: Whether to replace empty strings with NULL in input. This may be useful when working with data exported from spreadsheet software.\n\n### Insert or Update\n\nUse this operation to insert or update rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Postgres credential](../../credentials/postgres/).\n- **Operation**: Select **Insert or Update**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list or **By Name** to enter the table name.\n- **Mapping Column Mode**: How to map column names to incoming data:\n - **Map Each Column Manually**: Select the values to use for each column.\n - **Map Automatically**: Automatically map incoming data to matching column names in Postgres. The incoming data field names must match the column names in Postgres for this to work. If necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### Insert or Update options\n\n- **Connection Timeout**: The number of seconds to try to connect to the database.\n- **Delay Closing Idle Connection**: The number of seconds to wait before considering idle connections eligible for closing.\n- **Query Batching**: The way to send queries to the database:\n - **Single Query**: A single query for all incoming items.\n - **Independently**: Execute one query per incoming item of the execution.\n - **Transaction**: Execute all queries in a transaction. If a failure occurs, Postgres rolls back all changes.\n- **Output Columns**: Choose which columns to output. You can select from a list of available columns or specify IDs using [expressions](../../../../data/expressions/).\n- **Output Large-Format Numbers As**: The format to output `NUMERIC` and `BIGINT` columns as:\n - **Numbers**: Use this for standard numbers.\n - **Text**: Use this if you expect numbers longer than 16 digits. Without this, numbers may be incorrect.\n- **Replace Empty Strings with NULL**: Whether to replace empty strings with NULL in input. This may be useful when working with data exported from spreadsheet software.\n\n### Select\n\nUse this operation to select rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Postgres credential](../../credentials/postgres/).\n- **Operation**: Select **Select**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list or **By Name** to enter the table name.\n- **Return All**: Whether to return all results or only up to a given limit.\n- **Limit**: The maximum number of items to return when **Return All** is disabled.\n- **Select Rows**: Set the conditions to select rows. Define a **Column**, **Operator**, and **Value** to match rows on. If you don't select anything, Postgres selects all rows.\n- **Combine Conditions**: How to combine the conditions in **Select Rows**. **AND** requires all conditions to be true, while **OR** requires at least one condition to be true.\n- **Sort**: Choose how to sort the selected rows. Choose a **Column** from a list or by ID and a sort **Direction**.\n\n#### Select options\n\n- **Connection Timeout**: The number of seconds to try to connect to the database.\n- **Delay Closing Idle Connection**: The number of seconds to wait before considering idle connections eligible for closing.\n- **Query Batching**: The way to send queries to the database:\n - **Single Query**: A single query for all incoming items.\n - **Independently**: Execute one query per incoming item of the execution.\n - **Transaction**: Execute all queries in a transaction. If a failure occurs, Postgres rolls back all changes.\n- **Output Columns**: Choose which columns to output. You can select from a list of available columns or specify IDs using [expressions](../../../../data/expressions/).\n- **Output Large-Format Numbers As**: The format to output `NUMERIC` and `BIGINT` columns as:\n - **Numbers**: Use this for standard numbers.\n - **Text**: Use this if you expect numbers longer than 16 digits. Without this, numbers may be incorrect.\n\n### Update\n\nUse this operation to update rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Postgres credential](../../credentials/postgres/).\n- **Operation**: Select **Update**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list or **By Name** to enter the table name.\n- **Mapping Column Mode**: How to map column names to incoming data:\n - **Map Each Column Manually**: Select the values to use for each column.\n - **Map Automatically**: Automatically map incoming data to matching column names in Postgres. The incoming data field names must match the column names in Postgres for this to work. If necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### Update options\n\n- **Connection Timeout**: The number of seconds to try to connect to the database.\n- **Delay Closing Idle Connection**: The number of seconds to wait before considering idle connections eligible for closing.\n- **Query Batching**: The way to send queries to the database:\n - **Single Query**: A single query for all incoming items.\n - **Independently**: Execute one query per incoming item of the execution.\n - **Transaction**: Execute all queries in a transaction. If a failure occurs, Postgres rolls back all changes.\n- **Output Columns**: Choose which columns to output. You can select from a list of available columns or specify IDs using [expressions](../../../../data/expressions/).\n- **Output Large-Format Numbers As**: The format to output `NUMERIC` and `BIGINT` columns as:\n - **Numbers**: Use this for standard numbers.\n - **Text**: Use this if you expect numbers longer than 16 digits. Without this, numbers may be incorrect.\n- **Replace Empty Strings with NULL**: Whether to replace empty strings with NULL in input. This may be useful when working with data exported from spreadsheet software.\n\n## Templates and examples\n\n**Chat with Postgresql Database**\n\nby KumoHQ\n\n[View template details](https://n8n.io/workflows/2859-chat-with-postgresql-database/)\n\n**Generate Instagram Content from Top Trends with AI Image Generation**\n\nby mustafa kendigüzel\n\n[View template details](https://n8n.io/workflows/2803-generate-instagram-content-from-top-trends-with-ai-image-generation/)\n\n**AI Customer Support Assistant · WhatsApp Ready · Works for Any Business**\n\nby Matt F.\n\n[View template details](https://n8n.io/workflows/3859-ai-customer-support-assistant-whatsapp-ready-works-for-any-business/)\n\n[Browse Postgres integration templates](https://n8n.io/integrations/postgres/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nn8n provides a trigger node for Postgres. You can find the trigger node docs [here](../../trigger-nodes/n8n-nodes-base.postgrestrigger/).\n\n## Use query parameters\n\nWhen creating a query to run on a Postgres database, you can use the **Query Parameters** field in the **Options** section to load data into the query. n8n sanitizes data in query parameters, which prevents SQL injection.\n\nFor example, you want to find a person by their email address. Given the following input data:\n\n```\n[\n {\n \"email\": \"alex@example.com\",\n \"name\": \"Alex\",\n \"age\": 21 \n },\n {\n \"email\": \"jamie@example.com\",\n \"name\": \"Jamie\",\n \"age\": 33 \n }\n]\n```\n\nYou can write a query like:\n\n```\nSELECT * FROM $1:name WHERE email = $2;\n```\n\nThen in **Query Parameters**, provide the field values to use. You can provide fixed values or expressions. For this example, use expressions so the node can pull the email address from each input item in turn:\n\n```\n// users is an example table name\n{{ [ 'users', $json.email ] }}\n```\n\n## Common issues\n\nFor common questions or issues and suggested solutions, refer to [Common issues](common-issues/).\n",
39356
- "excerpt": "# Postgres node Use the Postgres node to automate work in Postgres, and integrate Postgres with other applications. n8n has built-in support for a wide range of Postgres features, including executing queries, as well as inserting and updating rows in a database. On this page, you'll find a list of operations the Postgres node supports and links to more resources. Credentials Refer to [Postgres credentials](../../credentials/postgres/) for guidance on setting up authentication. This node can...",
39349
+ "markdown": "# Oracle Database node\n\nUse the Oracle Database node to automate work in Oracle Database, and integrate Oracle Database with other applications. n8n has built-in support for a wide range of Oracle Database features which includes executing an SQL statement, fetching, inserting, updating or deleting data from Oracle Database. This node uses the [node-oracledb driver](https://github.com/oracle/node-oracledb) internally.\n\nOn this page, you'll find a list of operations the Oracle Database node supports and links to more resources.\n\nNote\n\nRefer to [Oracle Database credentials](../../credentials/oracledb/) for guidance on setting up authentication.\n\nRequires Oracle Database **19c or later**. For advanced Oracle Database features like Transparent Application Continuity (TAC) and Sharding, also requires Oracle Client Libraries **19c or later**.\n\n## Operations\n\n- [**Delete**](#delete): Delete an entire table or rows in a table\n- [**Execute SQL**](#execute-sql): Execute an SQL statement\n- [**Insert**](#insert): Insert rows in a table\n- [**Insert or Update**](#insert-or-update): Insert or update rows in a table\n- [**Select**](#select): Select rows from a table\n- [**Update**](#update): Update rows in a table\n\n### Delete\n\nUse this operation to delete an entire table or rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Oracle Database credential](../../credentials/oracledb/).\n- **Operation**: Select **Delete**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list, or select **By Name** to enter the table name.\n- **Command**: The deletion action to take:\n - **Truncate**: Removes the table's data but preserves the table's structure.\n - **Delete**: Delete the rows that match the \"Select Rows\" condition. If you don't select anything, Oracle Database deletes all rows.\n - **Select Rows**: Define a **Column**, **Operator**, and **Value** to match rows on. The value can be passed as JSON using expression or string.\n - **Combine Conditions**: How to combine the conditions in \"Select Rows\". The **AND** requires all conditions to be true, while **OR** requires at least one condition to be true.\n - **Drop**: Deletes the table's data and structure permanently.\n\n#### Delete options\n\n- **Auto Commit**: When this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **Statement Batching**: The way to send statements to the database:\n - **Single Statement**: A single statement for all incoming items.\n - **Independently**: Execute one statement per incoming item of the execution.\n - **Transaction**: Execute all statements in a transaction. If a failure occurs, Oracle Database rolls back all changes.\n\n### Execute SQL\n\nUse this operation to execute an SQL statement.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Oracle Database credential](../../credentials/oracledb/).\n\n- **Operation**: Execute SQL **Execute SQL**.\n\n- **Statement**: The SQL statement to execute. You can use n8n [expressions](../../../../data/expressions/) and positional parameters like `:1`, `:2`, or named parameters like `:name`, `:id` to use with [Use bind parameters](#use-bind-parameters). To run a PL/SQL procedure, for example `demo`, you can use:\n\n ```\n BEGIN\n demo;\n END;\n ```\n\n#### Execute Statement options\n\n- **Auto Commit**: When this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **Bind Variable Placeholder Values**: Enter the values for the bind parameters used in the statement [Use bind parameters](#use-bind-parameters).\n- **Output Numbers As String**: Indicates if the numbers should be retrieved as a String.\n- **Fetch Array Size**: This property is a number that sets the size of an internal buffer used for fetching query rows from Oracle Database. Changing it may affect query performance but does not affect how many rows are returned to the application.\n- **Number of Rows to Prefetch**: This property is a query tuning option to set the number of additional rows the underlying Oracle driver fetches during the internal initial statement execution phase of a query.\n\n### Insert\n\nUse this operation to insert rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Oracle Database credential](../../credentials/oracledb/).\n- **Operation**: Select **Insert**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list, or select **By Name** to enter the table name.\n- **Mapping Column Mode**: How to map column names to incoming data:\n - **Map Each Column Manually**: Select the values to use for each column [Use n8n expressions for bind values](#use-n8n-expressions-for-bind-values).\n - **Map Automatically**: Automatically map incoming data to matching column names in Oracle Database. The incoming data field names must match the column names in Oracle Database for this to work. If necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### Insert options\n\n- **Auto Commit**: When this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **Output Columns**: Choose which columns to output. You can select from a list of available columns or specify IDs using [expressions](../../../../data/expressions/).\n- **Statement Batching**: The way to send statements to the database:\n - **Single Statement**: A single statement for all incoming items.\n - **Independently**: Execute one statement per incoming item of the execution.\n - **Transaction**: Execute all statements in a transaction. If a failure occurs, Oracle Database rolls back all changes.\n\n### Insert or Update\n\nUse this operation to insert or update rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Oracle Database credential](../../credentials/oracledb/).\n- **Operation**: Select **Insert or Update**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list, or select **By Name** to enter the table name.\n- **Mapping Column Mode**: How to map column names to incoming data:\n - **Map Each Column Manually**: Select the values to use for each column [Use n8n expressions for bind values](#use-n8n-expressions-for-bind-values).\n - **Map Automatically**: Automatically map incoming data to matching column names in Oracle Database. The incoming data field names must match the column names in Oracle Database for this to work. If necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### Insert or Update options\n\n- **Auto Commit**: When this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **Output Columns**: Choose which columns to output. You can select from a list of available columns or specify IDs using [expressions](../../../../data/expressions/).\n- **Statement Batching**: The way to send statements to the database:\n - **Single Statement**: A single statement for all incoming items.\n - **Independently**: Execute one statement per incoming item of the execution.\n - **Transaction**: Execute all statements in a transaction. If a failure occurs, Oracle Database rolls back all changes.\n\n### Select\n\nUse this operation to select rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Oracle Database credential](../../credentials/oracledb/).\n- **Operation**: Select **Select**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list, or select **By Name** to enter the table name.\n- **Return All**: Whether to return all results or only up to a given limit.\n- **Limit**: The maximum number of items to return when **Return All** is disabled.\n- **Select Rows**: Set the conditions to select rows. Define a **Column**, **Operator**, and **Value**(as `json`) to match rows on. The **Value** can vary by type — for example with Fixed mode:\n - String: \"hello\", hellowithoutquotes, \"hello with space\"\n - Number: 12\n - JSON: { \"key\": \"val\" }\n\nIf you don't select anything, Oracle Database selects all rows.\n\n- **Combine Conditions**: How to combine the conditions in **Select Rows**. The **AND** requires all conditions to be true, while **OR** requires at least one condition to be true.\n- **Sort**: Choose how to sort the selected rows. Choose a **Column** from a list or by ID and a sort **Direction**.\n\n#### Select options\n\n- **Auto Commit**: When this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **Output Numbers As String**: Indicates if the numbers should be retrieved as a String.\n- **Fetch Array Size**: This property is a number that sets the size of an internal buffer used for fetching query rows from Oracle Database. Changing it may affect query performance but does not affect how many rows are returned to the application.\n- **Number of Rows to Prefetch**: This property is a query tuning option to set the number of additional rows the underlying Oracle driver fetches during the internal initial statement execution phase of a query.\n\n### Update\n\nUse this operation to update rows in a table.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Oracle Database credential](../../credentials/oracledb/).\n- **Operation**: Select **Update**.\n- **Schema**: Choose the schema that contains the table you want to work on. Select **From list** to choose the schema from the dropdown list or **By Name** to enter the schema name.\n- **Table**: Choose the table that you want to work on. Select **From list** to choose the table from the dropdown list, or select **By Name** to enter the table name.\n- **Mapping Column Mode**: How to map column names to incoming data:\n - **Map Each Column Manually**: Select the values to use for each column [Use n8n expressions for bind values](#use-n8n-expressions-for-bind-values).\n - **Map Automatically**: Automatically map incoming data to matching column names in Oracle Database. The incoming data field names must match the column names in Oracle Database for this to work. If necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### Update options\n\n- **Auto Commit**: When this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **Output Columns**: Choose which columns to output. You can select from a list of available columns or specify IDs using [expressions](../../../../data/expressions/).\n- **Statement Batching**: The way to send statements to the database:\n - **Single Statement**: A single statement for all incoming items.\n - **Independently**: Execute one statement per incoming item of the execution.\n - **Transaction**: Execute all statements in a transaction. If a failure occurs, Oracle Database rolls back all changes.\n\n## Related resources\n\nRefer to [SQL Language Reference](https://www.oracle.com/pls/topic/lookup?ctx=dblatest&id=SQLRF) for more information about the service.\n\nRefer to [node-oracledb documentation](https://node-oracledb.readthedocs.io/en/latest/) for more information about the node-oracledb driver.\n\n## Use bind parameters\n\nWhen creating a statement to run on an Oracle database instance, you can use the **Bind Variable Placeholder Values** field in the **Options** section to load data into the statement. n8n sanitizes data in statement parameters, which prevents SQL injection.\n\nFor example, you would want to find specific fruits by their color. Given the following input data:\n\n```\n[\n {\n \"FRUIT_ID\": 1,\n \"FRUIT_NAME\": \"Apple\",\n \"COLOR\": \"Red\" \n },\n {\n \"FRUIT_ID\": 2,\n \"FRUIT_NAME\": \"Banana\",\n \"COLOR\": \"Yellow\"\n }\n]\n```\n\nYou can write a statement like:\n\n```\nSELECT * FROM FRUITS WHERE COLOR = :col\n```\n\nThen in **Bind Variable Placeholder Values**, provide the field values to use. You can provide fixed values or expressions. For this example, use expressions so the node can pull the color from each input item in turn:\n\n```\n// fruits is an example table name\nfruits, {{ $json.color }}\n```\n\n## Use n8n Expressions for bind values\n\nFor **Values to Send**, you can provide inputs using n8n Expressions. Below are examples for different data types — you can either enter constant values or reference fields from previous items (`$json`):\n\n### JSON\n\n- Constant: `{{ { k1: \"v1\", k2: \"v2\" } }}`\n- From a previous item: `{{ $json.COL_JSON }}`\n\n### VECTOR\n\n- Constant: `{{ [1, 2, 3, 4.5] }}`\n- From a previous item: `{{ $json.COL_VECTOR }}`\n\n### BLOB\n\n- Constant: `{{ [94, 87, 34] }}` or `{{ ' BLOB data string' }}`\n- From a previous item: `{{ $json.COL_BLOB }}`\n\n### RAW\n\n- Constant: `{{ [94, 87, 34] }}`\n- From a previous item: `{{ $json.COL_RAW }}`\n\n### BOOLEAN\n\n- Constant: `{{ true }}`\n- From a previous item: `{{ $json.COL_BOOLEAN }}`\n\n### NUMBER\n\n- Constant: `1234`\n- From a previous item: `{{ $json.COL_NUMBER }}`\n\n## VARCHAR\n\n- Constant: `' Hello World '`\n- From a previous item: `{{ $json.COL_CHAR }}`\n\nThese examples assume JSON keys (e.g. `COL_JSON, COL_VECTOR`) map directly to the respective SQL column types.\n",
39350
+ "excerpt": "# Oracle Database node Use the Oracle Database node to automate work in Oracle Database, and integrate Oracle Database with other applications. n8n has built-in support for a wide range of Oracle Database features which includes executing an SQL statement, fetching, inserting, updating or deleting data from Oracle Database. This node uses the [node-oracledb driver](https://github.com/oracle/node-oracledb) internally. On this page, you'll find a list of operations the Oracle Database node suppo...",
39357
39351
  "sections": [
39358
39352
  {
39359
- "title": "Postgres node",
39353
+ "title": "Oracle Database node",
39360
39354
  "level": 1,
39361
- "content": "Use the Postgres node to automate work in Postgres, and integrate Postgres with other applications. n8n has built-in support for a wide range of Postgres features, including executing queries, as well as inserting and updating rows in a database.\n\nOn this page, you'll find a list of operations the Postgres node supports and links to more resources.\n\nCredentials\n\nRefer to [Postgres credentials](../../credentials/postgres/) for guidance on setting up authentication.\n\nThis node can be used as an AI tool\n\nThis node can be used to enhance the capabilities of an AI agent. When used in this way, many parameters can be set automatically, or with information directed by AI - find out more in the [AI tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/)."
39355
+ "content": "Use the Oracle Database node to automate work in Oracle Database, and integrate Oracle Database with other applications. n8n has built-in support for a wide range of Oracle Database features which includes executing an SQL statement, fetching, inserting, updating or deleting data from Oracle Database. This node uses the [node-oracledb driver](https://github.com/oracle/node-oracledb) internally.\n\nOn this page, you'll find a list of operations the Oracle Database node supports and links to more resources.\n\nNote\n\nRefer to [Oracle Database credentials](../../credentials/oracledb/) for guidance on setting up authentication.\n\nRequires Oracle Database **19c or later**. For advanced Oracle Database features like Transparent Application Continuity (TAC) and Sharding, also requires Oracle Client Libraries **19c or later**."
39362
39356
  }
39363
39357
  ]
39364
39358
  },
39365
39359
  "metadata": {
39366
39360
  "keywords": [
39367
- "postgres",
39361
+ "oracle",
39362
+ "database",
39368
39363
  "node",
39369
39364
  "operations",
39370
39365
  "delete",
39371
39366
  "options",
39372
39367
  "execute",
39373
- "query",
39368
+ "statement",
39374
39369
  "insert",
39375
39370
  "update",
39376
39371
  "select",
39377
- "templates",
39378
- "examples",
39379
39372
  "related",
39380
39373
  "resources",
39374
+ "bind",
39381
39375
  "parameters",
39382
- "common",
39383
- "issues"
39376
+ "expressions",
39377
+ "values",
39378
+ "json",
39379
+ "vector",
39380
+ "blob",
39381
+ "boolean",
39382
+ "number",
39383
+ "varchar"
39384
39384
  ],
39385
39385
  "useCases": [],
39386
39386
  "operations": [
39387
39387
  ""
39388
39388
  ],
39389
- "codeExamples": 3,
39389
+ "codeExamples": 4,
39390
39390
  "complexity": "intermediate",
39391
39391
  "readingTime": "12 min",
39392
- "contentLength": 15886,
39392
+ "contentLength": 14533,
39393
39393
  "relatedPages": []
39394
39394
  },
39395
39395
  "searchIndex": {
39396
- "fullText": "postgres # postgres node\n\nuse the postgres node to automate work in postgres, and integrate postgres with other applications. n8n has built-in support for a wide range of postgres features, including executing queries, as well as inserting and updating rows in a database.\n\non this page, you'll find a list of operations the postgres node supports and links to more resources.\n\ncredentials\n\nrefer to [postgres credentials](../../credentials/postgres/) for guidance on setting up authentication.\n\nthis node can be used as an ai tool\n\nthis node can be used to enhance the capabilities of an ai agent. when used in this way, many parameters can be set automatically, or with information directed by ai - find out more in the [ai tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/).\n\n## operations\n\n- [**delete**](#delete): delete an entire table or rows in a table\n- [**execute query**](#execute-query): execute an sql query\n- [**insert**](#insert): insert rows in a table\n- [**insert or update**](#insert-or-update): insert or update rows in a table\n- [**select**](#select): select rows from a table\n- [**update**](#update): update rows in a table\n\n### delete\n\nuse this operation to delete an entire table or rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [postgres credential](../../credentials/postgres/).\n- **operation**: select **delete**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or **by name** to enter the schema name.\n- **table**: choose the table that you want to work on. select **from list** to choose the table from the dropdown list or **by name** to enter the table name.\n- **command**: the deletion action to take:\n - **truncate**: removes the table's data but preserves the table's structure.\n - **restart sequences**: whether to reset auto increment columns to their initial values as part of the truncate process.\n - **delete**: delete the rows that match the \"select rows\" condition. if you don't select anything, postgres deletes all rows.\n - **select rows**: define a **column**, **operator**, and **value** to match rows on.\n - **combine conditions**: how to combine the conditions in \"select rows\". **and** requires all conditions to be true, while **or** requires at least one condition to be true.\n - **drop**: deletes the table's data and structure permanently.\n\n#### delete options\n\n- **cascade**: whether to also drop all objects that depend on the table, like views and sequences. available if using **truncate** or **drop** commands.\n- **connection timeout**: the number of seconds to try to connect to the database.\n- **delay closing idle connection**: the number of seconds to wait before considering idle connections eligible for closing.\n- **query batching**: the way to send queries to the database:\n - **single query**: a single query for all incoming items.\n - **independently**: execute one query per incoming item of the execution.\n - **transaction**: execute all queries in a transaction. if a failure occurs, postgres rolls back all changes.\n- **output large-format numbers as**: the format to output `numeric` and `bigint` columns as:\n - **numbers**: use this for standard numbers.\n - **text**: use this if you expect numbers longer than 16 digits. without this, numbers may be incorrect.\n\n### execute query\n\nuse this operation to execute an sql query.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [postgres credential](../../credentials/postgres/).\n- **operation**: select **execute query**.\n- **query**: the sql query to execute. you can use n8n [expressions](../../../../data/expressions/) and tokens like `$1`, `$2`, and `$3` to build [prepared statements](https://www.postgresql.org/docs/current/sql-prepare.html) to use with [query parameters](#use-query-parameters).\n\n#### execute query options\n\n- **connection timeout**: the number of seconds to try to connect to the database.\n- **delay closing idle connection**: the number of seconds to wait before considering idle connections eligible for closing.\n- **query batching**: the way to send queries to the database:\n - **single query**: a single query for all incoming items.\n - **independently**: execute one query per incoming item of the execution.\n - **transaction**: execute all queries in a transaction. if a failure occurs, postgres rolls back all changes.\n- **query parameters**: a comma-separated list of values that you want to use as [query parameters](#use-query-parameters).\n- **output large-format numbers as**: the format to output `numeric` and `bigint` columns as:\n - **numbers**: use this for standard numbers.\n - **text**: use this if you expect numbers longer than 16 digits. without this, numbers may be incorrect.\n- **replace empty strings with null**: whether to replace empty strings with null in input. this may be useful when working with data exported from spreadsheet software.\n\n### insert\n\nuse this operation to insert rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [postgres credential](../../credentials/postgres/).\n- **operation**: select **insert**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or **by name** to enter the schema name.\n- **table**: choose the table that you want to work on. select **from list** to choose the table from the dropdown list or **by name** to enter the table name.\n- **mapping column mode**: how to map column names to incoming data:\n - **map each column manually**: select the values to use for each column.\n - **map automatically**: automatically map incoming data to matching column names in postgres. the incoming data field names must match the column names in postgres for this to work. if necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### insert options\n\n- **connection timeout**: the number of seconds to try to connect to the database.\n- **delay closing idle connection**: the number of seconds to wait before considering idle connections eligible for closing.\n- **query batching**: the way to send queries to the database:\n - **single query**: a single query for all incoming items.\n - **independently**: execute one query per incoming item of the execution.\n - **transaction**: execute all queries in a transaction. if a failure occurs, postgres rolls back all changes.\n- **output columns**: choose which columns to output. you can select from a list of available columns or specify ids using [expressions](../../../../data/expressions/).\n- **output large-format numbers as**: the format to output `numeric` and `bigint` columns as:\n - **numbers**: use this for standard numbers.\n - **text**: use this if you expect numbers longer than 16 digits. without this, numbers may be incorrect.\n- **skip on conflict**: whether to skip the row if the insert violates a unique or exclusion constraint instead of throwing an error.\n- **replace empty strings with null**: whether to replace empty strings with null in input. this may be useful when working with data exported from spreadsheet software.\n\n### insert or update\n\nuse this operation to insert or update rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [postgres credential](../../credentials/postgres/).\n- **operation**: select **insert or update**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or **by name** to enter the schema name.\n- **table**: choose the table that you want to work on. select **from list** to choose the table from the dropdown list or **by name** to enter the table name.\n- **mapping column mode**: how to map column names to incoming data:\n - **map each column manually**: select the values to use for each column.\n - **map automatically**: automatically map incoming data to matching column names in postgres. the incoming data field names must match the column names in postgres for this to work. if necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### insert or update options\n\n- **connection timeout**: the number of seconds to try to connect to the database.\n- **delay closing idle connection**: the number of seconds to wait before considering idle connections eligible for closing.\n- **query batching**: the way to send queries to the database:\n - **single query**: a single query for all incoming items.\n - **independently**: execute one query per incoming item of the execution.\n - **transaction**: execute all queries in a transaction. if a failure occurs, postgres rolls back all changes.\n- **output columns**: choose which columns to output. you can select from a list of available columns or specify ids using [expressions](../../../../data/expressions/).\n- **output large-format numbers as**: the format to output `numeric` and `bigint` columns as:\n - **numbers**: use this for standard numbers.\n - **text**: use this if you expect numbers longer than 16 digits. without this, numbers may be incorrect.\n- **replace empty strings with null**: whether to replace empty strings with null in input. this may be useful when working with data exported from spreadsheet software.\n\n### select\n\nuse this operation to select rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [postgres credential](../../credentials/postgres/).\n- **operation**: select **select**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or *",
39396
+ "fullText": "oracle database # oracle database node\n\nuse the oracle database node to automate work in oracle database, and integrate oracle database with other applications. n8n has built-in support for a wide range of oracle database features which includes executing an sql statement, fetching, inserting, updating or deleting data from oracle database. this node uses the [node-oracledb driver](https://github.com/oracle/node-oracledb) internally.\n\non this page, you'll find a list of operations the oracle database node supports and links to more resources.\n\nnote\n\nrefer to [oracle database credentials](../../credentials/oracledb/) for guidance on setting up authentication.\n\nrequires oracle database **19c or later**. for advanced oracle database features like transparent application continuity (tac) and sharding, also requires oracle client libraries **19c or later**.\n\n## operations\n\n- [**delete**](#delete): delete an entire table or rows in a table\n- [**execute sql**](#execute-sql): execute an sql statement\n- [**insert**](#insert): insert rows in a table\n- [**insert or update**](#insert-or-update): insert or update rows in a table\n- [**select**](#select): select rows from a table\n- [**update**](#update): update rows in a table\n\n### delete\n\nuse this operation to delete an entire table or rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [oracle database credential](../../credentials/oracledb/).\n- **operation**: select **delete**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or **by name** to enter the schema name.\n- **table**: choose the table that you want to work on. select **from list** to choose the table from the dropdown list, or select **by name** to enter the table name.\n- **command**: the deletion action to take:\n - **truncate**: removes the table's data but preserves the table's structure.\n - **delete**: delete the rows that match the \"select rows\" condition. if you don't select anything, oracle database deletes all rows.\n - **select rows**: define a **column**, **operator**, and **value** to match rows on. the value can be passed as json using expression or string.\n - **combine conditions**: how to combine the conditions in \"select rows\". the **and** requires all conditions to be true, while **or** requires at least one condition to be true.\n - **drop**: deletes the table's data and structure permanently.\n\n#### delete options\n\n- **auto commit**: when this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **statement batching**: the way to send statements to the database:\n - **single statement**: a single statement for all incoming items.\n - **independently**: execute one statement per incoming item of the execution.\n - **transaction**: execute all statements in a transaction. if a failure occurs, oracle database rolls back all changes.\n\n### execute sql\n\nuse this operation to execute an sql statement.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [oracle database credential](../../credentials/oracledb/).\n\n- **operation**: execute sql **execute sql**.\n\n- **statement**: the sql statement to execute. you can use n8n [expressions](../../../../data/expressions/) and positional parameters like `:1`, `:2`, or named parameters like `:name`, `:id` to use with [use bind parameters](#use-bind-parameters). to run a pl/sql procedure, for example `demo`, you can use:\n\n ```\n begin\n demo;\n end;\n ```\n\n#### execute statement options\n\n- **auto commit**: when this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **bind variable placeholder values**: enter the values for the bind parameters used in the statement [use bind parameters](#use-bind-parameters).\n- **output numbers as string**: indicates if the numbers should be retrieved as a string.\n- **fetch array size**: this property is a number that sets the size of an internal buffer used for fetching query rows from oracle database. changing it may affect query performance but does not affect how many rows are returned to the application.\n- **number of rows to prefetch**: this property is a query tuning option to set the number of additional rows the underlying oracle driver fetches during the internal initial statement execution phase of a query.\n\n### insert\n\nuse this operation to insert rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [oracle database credential](../../credentials/oracledb/).\n- **operation**: select **insert**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or **by name** to enter the schema name.\n- **table**: choose the table that you want to work on. select **from list** to choose the table from the dropdown list, or select **by name** to enter the table name.\n- **mapping column mode**: how to map column names to incoming data:\n - **map each column manually**: select the values to use for each column [use n8n expressions for bind values](#use-n8n-expressions-for-bind-values).\n - **map automatically**: automatically map incoming data to matching column names in oracle database. the incoming data field names must match the column names in oracle database for this to work. if necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### insert options\n\n- **auto commit**: when this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **output columns**: choose which columns to output. you can select from a list of available columns or specify ids using [expressions](../../../../data/expressions/).\n- **statement batching**: the way to send statements to the database:\n - **single statement**: a single statement for all incoming items.\n - **independently**: execute one statement per incoming item of the execution.\n - **transaction**: execute all statements in a transaction. if a failure occurs, oracle database rolls back all changes.\n\n### insert or update\n\nuse this operation to insert or update rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [oracle database credential](../../credentials/oracledb/).\n- **operation**: select **insert or update**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or **by name** to enter the schema name.\n- **table**: choose the table that you want to work on. select **from list** to choose the table from the dropdown list, or select **by name** to enter the table name.\n- **mapping column mode**: how to map column names to incoming data:\n - **map each column manually**: select the values to use for each column [use n8n expressions for bind values](#use-n8n-expressions-for-bind-values).\n - **map automatically**: automatically map incoming data to matching column names in oracle database. the incoming data field names must match the column names in oracle database for this to work. if necessary, consider using the [edit fields (set) node](../../core-nodes/n8n-nodes-base.set/) before this node to adjust the format as needed.\n\n#### insert or update options\n\n- **auto commit**: when this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **output columns**: choose which columns to output. you can select from a list of available columns or specify ids using [expressions](../../../../data/expressions/).\n- **statement batching**: the way to send statements to the database:\n - **single statement**: a single statement for all incoming items.\n - **independently**: execute one statement per incoming item of the execution.\n - **transaction**: execute all statements in a transaction. if a failure occurs, oracle database rolls back all changes.\n\n### select\n\nuse this operation to select rows in a table.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [oracle database credential](../../credentials/oracledb/).\n- **operation**: select **select**.\n- **schema**: choose the schema that contains the table you want to work on. select **from list** to choose the schema from the dropdown list or **by name** to enter the schema name.\n- **table**: choose the table that you want to work on. select **from list** to choose the table from the dropdown list, or select **by name** to enter the table name.\n- **return all**: whether to return all results or only up to a given limit.\n- **limit**: the maximum number of items to return when **return all** is disabled.\n- **select rows**: set the conditions to select rows. define a **column**, **operator**, and **value**(as `json`) to match rows on. the **value** can vary by type — for example with fixed mode:\n - string: \"hello\", hellowithoutquotes, \"hello with space\"\n - number: 12\n - json: { \"key\": \"val\" }\n\nif you don't select anything, oracle database selects all rows.\n\n- **combine conditions**: how to combine the conditions in **select rows**. the **and** requires all conditions to be true, while **or** requires at least one condition to be true.\n- **sort**: choose how to sort the selected rows. choose a **column** from a list or by id and a sort **direction**.\n\n#### select options\n\n- **auto commit**: when this property is set to true, the transaction in the current connection is automatically committed at the end of statement execution.\n- **output numbers as string**: indicates if the numbers should be retrieved as a string.\n- **fetch array size**: this property is a num",
39397
39397
  "importantTerms": [
39398
- "query",
39399
39398
  "select",
39400
39399
  "table",
39401
- "postgres",
39402
- "this",
39400
+ "oracle",
39403
39401
  "from",
39404
- "numbers",
39402
+ "database",
39403
+ "statement",
39404
+ "rows",
39405
+ "this",
39405
39406
  "list",
39406
39407
  "choose",
39407
- "with",
39408
39408
  "name",
39409
- "rows",
39410
- "data",
39411
39409
  "column",
39412
- "incoming",
39413
- "execute",
39410
+ "data",
39414
39411
  "schema",
39415
- "output",
39416
- "columns",
39417
- "parameters",
39418
- "database",
39419
39412
  "enter",
39413
+ "expressions",
39414
+ "values",
39420
39415
  "node",
39421
- "insert",
39422
- "format",
39416
+ "execute",
39417
+ "incoming",
39418
+ "bind",
39419
+ "parameters",
39423
39420
  "work",
39421
+ "insert",
39424
39422
  "update",
39425
- "queries",
39423
+ "json",
39424
+ "transaction",
39426
39425
  "that",
39427
- "number",
39426
+ "oracledb",
39428
39427
  "operation",
39429
39428
  "credential",
39430
- "connect",
39431
- "want",
39432
- "connection",
39433
- "seconds",
39434
- "closing",
39435
- "idle",
39436
- "single",
39437
- "transaction",
39438
- "expressions",
39429
+ "automatically",
39430
+ "execution",
39431
+ "item",
39439
39432
  "names",
39433
+ "want",
39434
+ "true",
39435
+ "with",
39440
39436
  "dropdown",
39437
+ "property",
39438
+ "delete",
39439
+ "number",
39440
+ "columns",
39441
39441
  "credentials",
39442
39442
  "using",
39443
- "delete",
39444
- "before",
39445
- "whether",
39446
- "replace",
39447
- "empty"
39443
+ "when",
39444
+ "statements",
39445
+ "single",
39446
+ "output",
39447
+ "query"
39448
39448
  ]
39449
39449
  }
39450
39450
  },
@@ -47607,80 +47607,6 @@
47607
47607
  },
47608
47608
  {
47609
47609
  "id": "page-0613",
47610
- "title": "Workflow Retriever",
47611
- "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrieverworkflow/index.md",
47612
- "urlPath": "integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrieverworkflow/index.md",
47613
- "category": "cluster-nodes",
47614
- "subcategory": null,
47615
- "nodeName": null,
47616
- "nodeType": null,
47617
- "content": {
47618
- "markdown": "# Workflow Retriever node\n\nUse the Workflow Retriever node to retrieve data from an n8n workflow for use in a Retrieval QA Chain or another Retriever node.\n\nOn this page, you'll find the node parameters for the Workflow Retriever 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### Source\n\nTell n8n which workflow to call. You can choose either:\n\n- **Database** and enter a workflow ID.\n- **Parameter** and copy in a complete [workflow JSON](../../../../../workflows/export-import/).\n\n### Workflow values\n\nSet values to pass to the workflow you're calling.\n\nThese values appear in the output data of the trigger node in the workflow you call. You can access these values in expressions in the workflow. For example, if you have:\n\n- **Workflow Values** with a **Name** of `myCustomValue`\n- A workflow with an Execute Sub-workflow Trigger node as its trigger\n\nThe expression to access the value of `myCustomValue` is `{{ $('Execute Sub-workflow Trigger').item.json.myCustomValue }}`.\n\n## Templates and examples\n\n**AI Crew to Automate Fundamental Stock Analysis - Q&A Workflow**\n\nby Derek Cheung\n\n[View template details](https://n8n.io/workflows/2183-ai-crew-to-automate-fundamental-stock-analysis-qanda-workflow/)\n\n**Build a PDF Document RAG System with Mistral OCR, Qdrant and Gemini AI**\n\nby Davide Boizza\n\n[View template details](https://n8n.io/workflows/4400-build-a-pdf-document-rag-system-with-mistral-ocr-qdrant-and-gemini-ai/)\n\n**AI: Ask questions about any data source (using the n8n workflow retriever)**\n\nby n8n Team\n\n[View template details](https://n8n.io/workflows/1958-ai-ask-questions-about-any-data-source-using-the-n8n-workflow-retriever/)\n\n[Browse Workflow Retriever integration templates](https://n8n.io/integrations/workflow-retriever/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nRefer to [LangChain's general retriever documentation](https://js.langchain.com/docs/concepts/retrievers/) for more information about the service.\n\nView n8n's [Advanced AI](../../../../../advanced-ai/) documentation.\n",
47619
- "excerpt": "# Workflow Retriever node Use the Workflow Retriever node to retrieve data from an n8n workflow for use in a Retrieval QA Chain or another Retriever node. On this page, you'll find the node parameters for the Workflow Retriever 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 number of items as input, process these items, and output t...",
47620
- "sections": [
47621
- {
47622
- "title": "Workflow Retriever node",
47623
- "level": 1,
47624
- "content": "Use the Workflow Retriever node to retrieve data from an n8n workflow for use in a Retrieval QA Chain or another Retriever node.\n\nOn this page, you'll find the node parameters for the Workflow Retriever 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."
47625
- }
47626
- ]
47627
- },
47628
- "metadata": {
47629
- "keywords": [
47630
- "workflow",
47631
- "retriever",
47632
- "node",
47633
- "parameters",
47634
- "source",
47635
- "values",
47636
- "templates",
47637
- "examples",
47638
- "related",
47639
- "resources"
47640
- ],
47641
- "useCases": [],
47642
- "operations": [],
47643
- "codeExamples": 0,
47644
- "complexity": "beginner",
47645
- "readingTime": "2 min",
47646
- "contentLength": 2714,
47647
- "relatedPages": []
47648
- },
47649
- "searchIndex": {
47650
- "fullText": "workflow retriever # workflow retriever node\n\nuse the workflow retriever node to retrieve data from an n8n workflow for use in a retrieval qa chain or another retriever node.\n\non this page, you'll find the node parameters for the workflow retriever 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### source\n\ntell n8n which workflow to call. you can choose either:\n\n- **database** and enter a workflow id.\n- **parameter** and copy in a complete [workflow json](../../../../../workflows/export-import/).\n\n### workflow values\n\nset values to pass to the workflow you're calling.\n\nthese values appear in the output data of the trigger node in the workflow you call. you can access these values in expressions in the workflow. for example, if you have:\n\n- **workflow values** with a **name** of `mycustomvalue`\n- a workflow with an execute sub-workflow trigger node as its trigger\n\nthe expression to access the value of `mycustomvalue` is `{{ $('execute sub-workflow trigger').item.json.mycustomvalue }}`.\n\n## templates and examples\n\n**ai crew to automate fundamental stock analysis - q&a workflow**\n\nby derek cheung\n\n[view template details](https://n8n.io/workflows/2183-ai-crew-to-automate-fundamental-stock-analysis-qanda-workflow/)\n\n**build a pdf document rag system with mistral ocr, qdrant and gemini ai**\n\nby davide boizza\n\n[view template details](https://n8n.io/workflows/4400-build-a-pdf-document-rag-system-with-mistral-ocr-qdrant-and-gemini-ai/)\n\n**ai: ask questions about any data source (using the n8n workflow retriever)**\n\nby n8n team\n\n[view template details](https://n8n.io/workflows/1958-ai-ask-questions-about-any-data-source-using-the-n8n-workflow-retriever/)\n\n[browse workflow retriever integration templates](https://n8n.io/integrations/workflow-retriever/), or [search all templates](https://n8n.io/workflows/)\n\n## related resources\n\nrefer to [langchain's general retriever documentation](https://js.langchain.com/docs/concepts/retrievers/) for more information about the service.\n\nview n8n's [advanced ai](../../../../../advanced-ai/) documentation.\n workflow retriever node",
47651
- "importantTerms": [
47652
- "workflow",
47653
- "retriever",
47654
- "node",
47655
- "name",
47656
- "values",
47657
- "nodes",
47658
- "expression",
47659
- "https",
47660
- "workflows",
47661
- "data",
47662
- "items",
47663
- "input",
47664
- "resolves",
47665
- "json",
47666
- "trigger",
47667
- "with",
47668
- "view",
47669
- "using",
47670
- "these",
47671
- "item",
47672
- "example",
47673
- "source",
47674
- "mycustomvalue",
47675
- "templates",
47676
- "template",
47677
- "details",
47678
- "about"
47679
- ]
47680
- }
47681
- },
47682
- {
47683
- "id": "page-0614",
47684
47610
  "title": "Character Text Splitter",
47685
47611
  "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittercharactertextsplitter/index.md",
47686
47612
  "urlPath": "integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittercharactertextsplitter/index.md",
@@ -47749,7 +47675,7 @@
47749
47675
  }
47750
47676
  },
47751
47677
  {
47752
- "id": "page-0615",
47678
+ "id": "page-0614",
47753
47679
  "title": "Recursive Character Text Splitter",
47754
47680
  "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplitterrecursivecharactertextsplitter/index.md",
47755
47681
  "urlPath": "integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplitterrecursivecharactertextsplitter/index.md",
@@ -47819,6 +47745,80 @@
47819
47745
  ]
47820
47746
  }
47821
47747
  },
47748
+ {
47749
+ "id": "page-0615",
47750
+ "title": "Workflow Retriever",
47751
+ "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrieverworkflow/index.md",
47752
+ "urlPath": "integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrieverworkflow/index.md",
47753
+ "category": "cluster-nodes",
47754
+ "subcategory": null,
47755
+ "nodeName": null,
47756
+ "nodeType": null,
47757
+ "content": {
47758
+ "markdown": "# Workflow Retriever node\n\nUse the Workflow Retriever node to retrieve data from an n8n workflow for use in a Retrieval QA Chain or another Retriever node.\n\nOn this page, you'll find the node parameters for the Workflow Retriever 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### Source\n\nTell n8n which workflow to call. You can choose either:\n\n- **Database** and enter a workflow ID.\n- **Parameter** and copy in a complete [workflow JSON](../../../../../workflows/export-import/).\n\n### Workflow values\n\nSet values to pass to the workflow you're calling.\n\nThese values appear in the output data of the trigger node in the workflow you call. You can access these values in expressions in the workflow. For example, if you have:\n\n- **Workflow Values** with a **Name** of `myCustomValue`\n- A workflow with an Execute Sub-workflow Trigger node as its trigger\n\nThe expression to access the value of `myCustomValue` is `{{ $('Execute Sub-workflow Trigger').item.json.myCustomValue }}`.\n\n## Templates and examples\n\n**AI Crew to Automate Fundamental Stock Analysis - Q&A Workflow**\n\nby Derek Cheung\n\n[View template details](https://n8n.io/workflows/2183-ai-crew-to-automate-fundamental-stock-analysis-qanda-workflow/)\n\n**Build a PDF Document RAG System with Mistral OCR, Qdrant and Gemini AI**\n\nby Davide Boizza\n\n[View template details](https://n8n.io/workflows/4400-build-a-pdf-document-rag-system-with-mistral-ocr-qdrant-and-gemini-ai/)\n\n**AI: Ask questions about any data source (using the n8n workflow retriever)**\n\nby n8n Team\n\n[View template details](https://n8n.io/workflows/1958-ai-ask-questions-about-any-data-source-using-the-n8n-workflow-retriever/)\n\n[Browse Workflow Retriever integration templates](https://n8n.io/integrations/workflow-retriever/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nRefer to [LangChain's general retriever documentation](https://js.langchain.com/docs/concepts/retrievers/) for more information about the service.\n\nView n8n's [Advanced AI](../../../../../advanced-ai/) documentation.\n",
47759
+ "excerpt": "# Workflow Retriever node Use the Workflow Retriever node to retrieve data from an n8n workflow for use in a Retrieval QA Chain or another Retriever node. On this page, you'll find the node parameters for the Workflow Retriever 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 number of items as input, process these items, and output t...",
47760
+ "sections": [
47761
+ {
47762
+ "title": "Workflow Retriever node",
47763
+ "level": 1,
47764
+ "content": "Use the Workflow Retriever node to retrieve data from an n8n workflow for use in a Retrieval QA Chain or another Retriever node.\n\nOn this page, you'll find the node parameters for the Workflow Retriever 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."
47765
+ }
47766
+ ]
47767
+ },
47768
+ "metadata": {
47769
+ "keywords": [
47770
+ "workflow",
47771
+ "retriever",
47772
+ "node",
47773
+ "parameters",
47774
+ "source",
47775
+ "values",
47776
+ "templates",
47777
+ "examples",
47778
+ "related",
47779
+ "resources"
47780
+ ],
47781
+ "useCases": [],
47782
+ "operations": [],
47783
+ "codeExamples": 0,
47784
+ "complexity": "beginner",
47785
+ "readingTime": "2 min",
47786
+ "contentLength": 2714,
47787
+ "relatedPages": []
47788
+ },
47789
+ "searchIndex": {
47790
+ "fullText": "workflow retriever # workflow retriever node\n\nuse the workflow retriever node to retrieve data from an n8n workflow for use in a retrieval qa chain or another retriever node.\n\non this page, you'll find the node parameters for the workflow retriever 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### source\n\ntell n8n which workflow to call. you can choose either:\n\n- **database** and enter a workflow id.\n- **parameter** and copy in a complete [workflow json](../../../../../workflows/export-import/).\n\n### workflow values\n\nset values to pass to the workflow you're calling.\n\nthese values appear in the output data of the trigger node in the workflow you call. you can access these values in expressions in the workflow. for example, if you have:\n\n- **workflow values** with a **name** of `mycustomvalue`\n- a workflow with an execute sub-workflow trigger node as its trigger\n\nthe expression to access the value of `mycustomvalue` is `{{ $('execute sub-workflow trigger').item.json.mycustomvalue }}`.\n\n## templates and examples\n\n**ai crew to automate fundamental stock analysis - q&a workflow**\n\nby derek cheung\n\n[view template details](https://n8n.io/workflows/2183-ai-crew-to-automate-fundamental-stock-analysis-qanda-workflow/)\n\n**build a pdf document rag system with mistral ocr, qdrant and gemini ai**\n\nby davide boizza\n\n[view template details](https://n8n.io/workflows/4400-build-a-pdf-document-rag-system-with-mistral-ocr-qdrant-and-gemini-ai/)\n\n**ai: ask questions about any data source (using the n8n workflow retriever)**\n\nby n8n team\n\n[view template details](https://n8n.io/workflows/1958-ai-ask-questions-about-any-data-source-using-the-n8n-workflow-retriever/)\n\n[browse workflow retriever integration templates](https://n8n.io/integrations/workflow-retriever/), or [search all templates](https://n8n.io/workflows/)\n\n## related resources\n\nrefer to [langchain's general retriever documentation](https://js.langchain.com/docs/concepts/retrievers/) for more information about the service.\n\nview n8n's [advanced ai](../../../../../advanced-ai/) documentation.\n workflow retriever node",
47791
+ "importantTerms": [
47792
+ "workflow",
47793
+ "retriever",
47794
+ "node",
47795
+ "name",
47796
+ "values",
47797
+ "nodes",
47798
+ "expression",
47799
+ "https",
47800
+ "workflows",
47801
+ "data",
47802
+ "items",
47803
+ "input",
47804
+ "resolves",
47805
+ "json",
47806
+ "trigger",
47807
+ "with",
47808
+ "view",
47809
+ "using",
47810
+ "these",
47811
+ "item",
47812
+ "example",
47813
+ "source",
47814
+ "mycustomvalue",
47815
+ "templates",
47816
+ "template",
47817
+ "details",
47818
+ "about"
47819
+ ]
47820
+ }
47821
+ },
47822
47822
  {
47823
47823
  "id": "page-0616",
47824
47824
  "title": "Token Splitter",
@@ -59790,60 +59790,6 @@
59790
59790
  },
59791
59791
  {
59792
59792
  "id": "page-0765",
59793
- "title": "Coda credentials",
59794
- "url": "https://docs.n8n.io/integrations/builtin/credentials/coda/index.md",
59795
- "urlPath": "integrations/builtin/credentials/coda/index.md",
59796
- "category": "other",
59797
- "subcategory": null,
59798
- "nodeName": null,
59799
- "nodeType": null,
59800
- "content": {
59801
- "markdown": "# Coda credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Coda](../../app-nodes/n8n-nodes-base.coda/)\n\n## Prerequisites\n\nCreate a [Coda](https://www.coda.io/) account.\n\n## Supported authentication methods\n\n- API access token\n\n## Related resources\n\nRefer to [Coda's API documentation](https://coda.io/developers/apis/v1) for more information about the service.\n\n## Using API access token\n\nTo configure this credential, you'll need:\n\n- An API **Access Token**: Generate an API access token in your Coda [**Account settings**](https://coda.io/@oleg/getting-started-guide-coda-api/start-here-5#_luxC4).\n",
59802
- "excerpt": "# Coda credentials You can use these credentials to authenticate the following nodes: - [Coda](../../app-nodes/n8n-nodes-base.coda/) ## Prerequisites Create a [Coda](https://www.coda.io/) account. ## Supported authentication methods - API access token ## Related resources Refer to [Coda's API documentation](https://coda.io/developers/apis/v1) for more information about the service. ## Using API access token To configure this credential, you'll need: - An API **Access Token**: Generate...",
59803
- "sections": [
59804
- {
59805
- "title": "Coda credentials",
59806
- "level": 1,
59807
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [Coda](../../app-nodes/n8n-nodes-base.coda/)"
59808
- }
59809
- ]
59810
- },
59811
- "metadata": {
59812
- "keywords": [
59813
- "coda",
59814
- "credentials",
59815
- "prerequisites",
59816
- "supported",
59817
- "authentication",
59818
- "methods",
59819
- "related",
59820
- "resources",
59821
- "using",
59822
- "access",
59823
- "token"
59824
- ],
59825
- "useCases": [],
59826
- "operations": [],
59827
- "codeExamples": 0,
59828
- "complexity": "beginner",
59829
- "readingTime": "1 min",
59830
- "contentLength": 632,
59831
- "relatedPages": []
59832
- },
59833
- "searchIndex": {
59834
- "fullText": "coda credentials # coda credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [coda](../../app-nodes/n8n-nodes-base.coda/)\n\n## prerequisites\n\ncreate a [coda](https://www.coda.io/) account.\n\n## supported authentication methods\n\n- api access token\n\n## related resources\n\nrefer to [coda's api documentation](https://coda.io/developers/apis/v1) for more information about the service.\n\n## using api access token\n\nto configure this credential, you'll need:\n\n- an api **access token**: generate an api access token in your coda [**account settings**](https://coda.io/@oleg/getting-started-guide-coda-api/start-here-5#_luxc4).\n coda credentials",
59835
- "importantTerms": [
59836
- "coda",
59837
- "credentials",
59838
- "access",
59839
- "token",
59840
- "nodes",
59841
- "https"
59842
- ]
59843
- }
59844
- },
59845
- {
59846
- "id": "page-0766",
59847
59793
  "title": "Cohere credentials",
59848
59794
  "url": "https://docs.n8n.io/integrations/builtin/credentials/cohere/index.md",
59849
59795
  "urlPath": "integrations/builtin/credentials/cohere/index.md",
@@ -59897,7 +59843,7 @@
59897
59843
  }
59898
59844
  },
59899
59845
  {
59900
- "id": "page-0767",
59846
+ "id": "page-0766",
59901
59847
  "title": "Contentful credentials",
59902
59848
  "url": "https://docs.n8n.io/integrations/builtin/credentials/contentful/index.md",
59903
59849
  "urlPath": "integrations/builtin/credentials/contentful/index.md",
@@ -59963,6 +59909,60 @@
59963
59909
  ]
59964
59910
  }
59965
59911
  },
59912
+ {
59913
+ "id": "page-0767",
59914
+ "title": "Coda credentials",
59915
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/coda/index.md",
59916
+ "urlPath": "integrations/builtin/credentials/coda/index.md",
59917
+ "category": "other",
59918
+ "subcategory": null,
59919
+ "nodeName": null,
59920
+ "nodeType": null,
59921
+ "content": {
59922
+ "markdown": "# Coda credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Coda](../../app-nodes/n8n-nodes-base.coda/)\n\n## Prerequisites\n\nCreate a [Coda](https://www.coda.io/) account.\n\n## Supported authentication methods\n\n- API access token\n\n## Related resources\n\nRefer to [Coda's API documentation](https://coda.io/developers/apis/v1) for more information about the service.\n\n## Using API access token\n\nTo configure this credential, you'll need:\n\n- An API **Access Token**: Generate an API access token in your Coda [**Account settings**](https://coda.io/@oleg/getting-started-guide-coda-api/start-here-5#_luxC4).\n",
59923
+ "excerpt": "# Coda credentials You can use these credentials to authenticate the following nodes: - [Coda](../../app-nodes/n8n-nodes-base.coda/) ## Prerequisites Create a [Coda](https://www.coda.io/) account. ## Supported authentication methods - API access token ## Related resources Refer to [Coda's API documentation](https://coda.io/developers/apis/v1) for more information about the service. ## Using API access token To configure this credential, you'll need: - An API **Access Token**: Generate...",
59924
+ "sections": [
59925
+ {
59926
+ "title": "Coda credentials",
59927
+ "level": 1,
59928
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [Coda](../../app-nodes/n8n-nodes-base.coda/)"
59929
+ }
59930
+ ]
59931
+ },
59932
+ "metadata": {
59933
+ "keywords": [
59934
+ "coda",
59935
+ "credentials",
59936
+ "prerequisites",
59937
+ "supported",
59938
+ "authentication",
59939
+ "methods",
59940
+ "related",
59941
+ "resources",
59942
+ "using",
59943
+ "access",
59944
+ "token"
59945
+ ],
59946
+ "useCases": [],
59947
+ "operations": [],
59948
+ "codeExamples": 0,
59949
+ "complexity": "beginner",
59950
+ "readingTime": "1 min",
59951
+ "contentLength": 632,
59952
+ "relatedPages": []
59953
+ },
59954
+ "searchIndex": {
59955
+ "fullText": "coda credentials # coda credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [coda](../../app-nodes/n8n-nodes-base.coda/)\n\n## prerequisites\n\ncreate a [coda](https://www.coda.io/) account.\n\n## supported authentication methods\n\n- api access token\n\n## related resources\n\nrefer to [coda's api documentation](https://coda.io/developers/apis/v1) for more information about the service.\n\n## using api access token\n\nto configure this credential, you'll need:\n\n- an api **access token**: generate an api access token in your coda [**account settings**](https://coda.io/@oleg/getting-started-guide-coda-api/start-here-5#_luxc4).\n coda credentials",
59956
+ "importantTerms": [
59957
+ "coda",
59958
+ "credentials",
59959
+ "access",
59960
+ "token",
59961
+ "nodes",
59962
+ "https"
59963
+ ]
59964
+ }
59965
+ },
59966
59966
  {
59967
59967
  "id": "page-0768",
59968
59968
  "title": "ConvertAPI credentials",
@@ -64227,59 +64227,6 @@
64227
64227
  },
64228
64228
  {
64229
64229
  "id": "page-0835",
64230
- "title": "Imperva WAF credentials",
64231
- "url": "https://docs.n8n.io/integrations/builtin/credentials/impervawaf/index.md",
64232
- "urlPath": "integrations/builtin/credentials/impervawaf/index.md",
64233
- "category": "other",
64234
- "subcategory": null,
64235
- "nodeName": null,
64236
- "nodeType": null,
64237
- "content": {
64238
- "markdown": "# Imperva WAF 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 an [Imperva WAF](https://www.imperva.com/products/web-application-firewall-waf/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Imperva WAF's documentation](https://docs.imperva.com/bundle/api-docs/page/api/authentication.htm) 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/imperva-waf/) on n8n's website.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API ID**\n- An **API Key**\n\nRefer to [Imperva WAF's API Key Management documentation](https://docs.imperva.com/bundle/cloud-application-security/page/settings/api-keys.htm) for instructions on generating and viewing API Keys and IDs.\n",
64239
- "excerpt": "# Imperva WAF 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 an [Imperva WAF](https://www.imperva.com/products/web-application-firewall-waf/) account. ## Supported authentication methods - API key ## Related resources Refer to [Imperva WAF's documentation](https://docs.imperva.com/bundle/api-docs/page/api/authenticati...",
64240
- "sections": [
64241
- {
64242
- "title": "Imperva WAF credentials",
64243
- "level": 1,
64244
- "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/)."
64245
- }
64246
- ]
64247
- },
64248
- "metadata": {
64249
- "keywords": [
64250
- "imperva",
64251
- "credentials",
64252
- "prerequisites",
64253
- "supported",
64254
- "authentication",
64255
- "methods",
64256
- "related",
64257
- "resources",
64258
- "using"
64259
- ],
64260
- "useCases": [],
64261
- "operations": [],
64262
- "codeExamples": 0,
64263
- "complexity": "beginner",
64264
- "readingTime": "1 min",
64265
- "contentLength": 1066,
64266
- "relatedPages": []
64267
- },
64268
- "searchIndex": {
64269
- "fullText": "imperva waf credentials # imperva waf 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 an [imperva waf](https://www.imperva.com/products/web-application-firewall-waf/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [imperva waf's documentation](https://docs.imperva.com/bundle/api-docs/page/api/authentication.htm) 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/imperva-waf/) on n8n's website.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api id**\n- an **api key**\n\nrefer to [imperva waf's api key management documentation](https://docs.imperva.com/bundle/cloud-application-security/page/settings/api-keys.htm) for instructions on generating and viewing api keys and ids.\n imperva waf credentials",
64270
- "importantTerms": [
64271
- "imperva",
64272
- "credentials",
64273
- "custom",
64274
- "https",
64275
- "operations",
64276
- "refer",
64277
- "docs"
64278
- ]
64279
- }
64280
- },
64281
- {
64282
- "id": "page-0836",
64283
64230
  "title": "Intercom credentials",
64284
64231
  "url": "https://docs.n8n.io/integrations/builtin/credentials/intercom/index.md",
64285
64232
  "urlPath": "integrations/builtin/credentials/intercom/index.md",
@@ -64340,7 +64287,7 @@
64340
64287
  }
64341
64288
  },
64342
64289
  {
64343
- "id": "page-0837",
64290
+ "id": "page-0836",
64344
64291
  "title": "Invoice Ninja credentials",
64345
64292
  "url": "https://docs.n8n.io/integrations/builtin/credentials/invoiceninja/index.md",
64346
64293
  "urlPath": "integrations/builtin/credentials/invoiceninja/index.md",
@@ -64392,6 +64339,59 @@
64392
64339
  ]
64393
64340
  }
64394
64341
  },
64342
+ {
64343
+ "id": "page-0837",
64344
+ "title": "Imperva WAF credentials",
64345
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/impervawaf/index.md",
64346
+ "urlPath": "integrations/builtin/credentials/impervawaf/index.md",
64347
+ "category": "other",
64348
+ "subcategory": null,
64349
+ "nodeName": null,
64350
+ "nodeType": null,
64351
+ "content": {
64352
+ "markdown": "# Imperva WAF 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 an [Imperva WAF](https://www.imperva.com/products/web-application-firewall-waf/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Imperva WAF's documentation](https://docs.imperva.com/bundle/api-docs/page/api/authentication.htm) 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/imperva-waf/) on n8n's website.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API ID**\n- An **API Key**\n\nRefer to [Imperva WAF's API Key Management documentation](https://docs.imperva.com/bundle/cloud-application-security/page/settings/api-keys.htm) for instructions on generating and viewing API Keys and IDs.\n",
64353
+ "excerpt": "# Imperva WAF 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 an [Imperva WAF](https://www.imperva.com/products/web-application-firewall-waf/) account. ## Supported authentication methods - API key ## Related resources Refer to [Imperva WAF's documentation](https://docs.imperva.com/bundle/api-docs/page/api/authenticati...",
64354
+ "sections": [
64355
+ {
64356
+ "title": "Imperva WAF credentials",
64357
+ "level": 1,
64358
+ "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/)."
64359
+ }
64360
+ ]
64361
+ },
64362
+ "metadata": {
64363
+ "keywords": [
64364
+ "imperva",
64365
+ "credentials",
64366
+ "prerequisites",
64367
+ "supported",
64368
+ "authentication",
64369
+ "methods",
64370
+ "related",
64371
+ "resources",
64372
+ "using"
64373
+ ],
64374
+ "useCases": [],
64375
+ "operations": [],
64376
+ "codeExamples": 0,
64377
+ "complexity": "beginner",
64378
+ "readingTime": "1 min",
64379
+ "contentLength": 1066,
64380
+ "relatedPages": []
64381
+ },
64382
+ "searchIndex": {
64383
+ "fullText": "imperva waf credentials # imperva waf 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 an [imperva waf](https://www.imperva.com/products/web-application-firewall-waf/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [imperva waf's documentation](https://docs.imperva.com/bundle/api-docs/page/api/authentication.htm) 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/imperva-waf/) on n8n's website.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api id**\n- an **api key**\n\nrefer to [imperva waf's api key management documentation](https://docs.imperva.com/bundle/cloud-application-security/page/settings/api-keys.htm) for instructions on generating and viewing api keys and ids.\n imperva waf credentials",
64384
+ "importantTerms": [
64385
+ "imperva",
64386
+ "credentials",
64387
+ "custom",
64388
+ "https",
64389
+ "operations",
64390
+ "refer",
64391
+ "docs"
64392
+ ]
64393
+ }
64394
+ },
64395
64395
  {
64396
64396
  "id": "page-0838",
64397
64397
  "title": "Iterable credentials",
@@ -64504,57 +64504,6 @@
64504
64504
  },
64505
64505
  {
64506
64506
  "id": "page-0840",
64507
- "title": "Jina AI credentials",
64508
- "url": "https://docs.n8n.io/integrations/builtin/credentials/jinaai/index.md",
64509
- "urlPath": "integrations/builtin/credentials/jinaai/index.md",
64510
- "category": "other",
64511
- "subcategory": null,
64512
- "nodeName": null,
64513
- "nodeType": null,
64514
- "content": {
64515
- "markdown": "# Jina AI credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Jina AI](../../app-nodes/n8n-nodes-base.jinaai/)\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Jina AI's reader API documentation](https://r.jina.ai/docs) and [Jina AI's search API documentation](https://s.jina.ai/docs) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- **API key**: A Jina AI API key. You can get your free API key without creating an account by doing the following:\n 1. Visit the [Jina AI website](https://jina.ai/).\n 1. Select **API** on the page.\n 1. Select **API KEY & BILLING** in the API app widget.\n 1. Copy the key labeled \"This is your unique key. Store it securely!\".\n\nJina AI API keys start with 10 million free tokens that you can use non-commercially. To top up your key or use commercially, scroll on the **API KEY & BILLING** tab of the **API** widget and select the top up option that best fits your needs.\n",
64516
- "excerpt": "# Jina AI credentials You can use these credentials to authenticate the following nodes: - [Jina AI](../../app-nodes/n8n-nodes-base.jinaai/) ## Supported authentication methods - API key ## Related resources Refer to [Jina AI's reader API documentation](https://r.jina.ai/docs) and [Jina AI's search API documentation](https://s.jina.ai/docs) for more information about the service. ## Using API key To configure this credential, you'll need: - **API key**: A Jina AI API key. You can get yo...",
64517
- "sections": [
64518
- {
64519
- "title": "Jina AI credentials",
64520
- "level": 1,
64521
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [Jina AI](../../app-nodes/n8n-nodes-base.jinaai/)"
64522
- }
64523
- ]
64524
- },
64525
- "metadata": {
64526
- "keywords": [
64527
- "jina",
64528
- "credentials",
64529
- "supported",
64530
- "authentication",
64531
- "methods",
64532
- "related",
64533
- "resources",
64534
- "using"
64535
- ],
64536
- "useCases": [],
64537
- "operations": [],
64538
- "codeExamples": 0,
64539
- "complexity": "beginner",
64540
- "readingTime": "1 min",
64541
- "contentLength": 1028,
64542
- "relatedPages": []
64543
- },
64544
- "searchIndex": {
64545
- "fullText": "jina ai credentials # jina ai credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [jina ai](../../app-nodes/n8n-nodes-base.jinaai/)\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [jina ai's reader api documentation](https://r.jina.ai/docs) and [jina ai's search api documentation](https://s.jina.ai/docs) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- **api key**: a jina ai api key. you can get your free api key without creating an account by doing the following:\n 1. visit the [jina ai website](https://jina.ai/).\n 1. select **api** on the page.\n 1. select **api key & billing** in the api app widget.\n 1. copy the key labeled \"this is your unique key. store it securely!\".\n\njina ai api keys start with 10 million free tokens that you can use non-commercially. to top up your key or use commercially, scroll on the **api key & billing** tab of the **api** widget and select the top up option that best fits your needs.\n jina ai credentials",
64546
- "importantTerms": [
64547
- "jina",
64548
- "credentials",
64549
- "your",
64550
- "nodes",
64551
- "https",
64552
- "select"
64553
- ]
64554
- }
64555
- },
64556
- {
64557
- "id": "page-0841",
64558
64507
  "title": "Jira credentials",
64559
64508
  "url": "https://docs.n8n.io/integrations/builtin/credentials/jira/index.md",
64560
64509
  "urlPath": "integrations/builtin/credentials/jira/index.md",
@@ -64623,7 +64572,7 @@
64623
64572
  }
64624
64573
  },
64625
64574
  {
64626
- "id": "page-0842",
64575
+ "id": "page-0841",
64627
64576
  "title": "Jotform credentials",
64628
64577
  "url": "https://docs.n8n.io/integrations/builtin/credentials/jotform/index.md",
64629
64578
  "urlPath": "integrations/builtin/credentials/jotform/index.md",
@@ -64676,6 +64625,57 @@
64676
64625
  ]
64677
64626
  }
64678
64627
  },
64628
+ {
64629
+ "id": "page-0842",
64630
+ "title": "Jina AI credentials",
64631
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/jinaai/index.md",
64632
+ "urlPath": "integrations/builtin/credentials/jinaai/index.md",
64633
+ "category": "other",
64634
+ "subcategory": null,
64635
+ "nodeName": null,
64636
+ "nodeType": null,
64637
+ "content": {
64638
+ "markdown": "# Jina AI credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Jina AI](../../app-nodes/n8n-nodes-base.jinaai/)\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Jina AI's reader API documentation](https://r.jina.ai/docs) and [Jina AI's search API documentation](https://s.jina.ai/docs) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- **API key**: A Jina AI API key. You can get your free API key without creating an account by doing the following:\n 1. Visit the [Jina AI website](https://jina.ai/).\n 1. Select **API** on the page.\n 1. Select **API KEY & BILLING** in the API app widget.\n 1. Copy the key labeled \"This is your unique key. Store it securely!\".\n\nJina AI API keys start with 10 million free tokens that you can use non-commercially. To top up your key or use commercially, scroll on the **API KEY & BILLING** tab of the **API** widget and select the top up option that best fits your needs.\n",
64639
+ "excerpt": "# Jina AI credentials You can use these credentials to authenticate the following nodes: - [Jina AI](../../app-nodes/n8n-nodes-base.jinaai/) ## Supported authentication methods - API key ## Related resources Refer to [Jina AI's reader API documentation](https://r.jina.ai/docs) and [Jina AI's search API documentation](https://s.jina.ai/docs) for more information about the service. ## Using API key To configure this credential, you'll need: - **API key**: A Jina AI API key. You can get yo...",
64640
+ "sections": [
64641
+ {
64642
+ "title": "Jina AI credentials",
64643
+ "level": 1,
64644
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [Jina AI](../../app-nodes/n8n-nodes-base.jinaai/)"
64645
+ }
64646
+ ]
64647
+ },
64648
+ "metadata": {
64649
+ "keywords": [
64650
+ "jina",
64651
+ "credentials",
64652
+ "supported",
64653
+ "authentication",
64654
+ "methods",
64655
+ "related",
64656
+ "resources",
64657
+ "using"
64658
+ ],
64659
+ "useCases": [],
64660
+ "operations": [],
64661
+ "codeExamples": 0,
64662
+ "complexity": "beginner",
64663
+ "readingTime": "1 min",
64664
+ "contentLength": 1028,
64665
+ "relatedPages": []
64666
+ },
64667
+ "searchIndex": {
64668
+ "fullText": "jina ai credentials # jina ai credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [jina ai](../../app-nodes/n8n-nodes-base.jinaai/)\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [jina ai's reader api documentation](https://r.jina.ai/docs) and [jina ai's search api documentation](https://s.jina.ai/docs) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- **api key**: a jina ai api key. you can get your free api key without creating an account by doing the following:\n 1. visit the [jina ai website](https://jina.ai/).\n 1. select **api** on the page.\n 1. select **api key & billing** in the api app widget.\n 1. copy the key labeled \"this is your unique key. store it securely!\".\n\njina ai api keys start with 10 million free tokens that you can use non-commercially. to top up your key or use commercially, scroll on the **api key & billing** tab of the **api** widget and select the top up option that best fits your needs.\n jina ai credentials",
64669
+ "importantTerms": [
64670
+ "jina",
64671
+ "credentials",
64672
+ "your",
64673
+ "nodes",
64674
+ "https",
64675
+ "select"
64676
+ ]
64677
+ }
64678
+ },
64679
64679
  {
64680
64680
  "id": "page-0843",
64681
64681
  "title": "JWT credentials",
@@ -69324,63 +69324,6 @@
69324
69324
  },
69325
69325
  {
69326
69326
  "id": "page-0915",
69327
- "title": "Philips Hue credentials",
69328
- "url": "https://docs.n8n.io/integrations/builtin/credentials/philipshue/index.md",
69329
- "urlPath": "integrations/builtin/credentials/philipshue/index.md",
69330
- "category": "other",
69331
- "subcategory": null,
69332
- "nodeName": null,
69333
- "nodeType": null,
69334
- "content": {
69335
- "markdown": "# Philips Hue credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Philips Hue](../../app-nodes/n8n-nodes-base.philipshue/)\n\n## Prerequisites\n\nCreate a [Philips Hue](https://www.philips-hue.com/en-us) account.\n\n## Supported authentication methods\n\n- OAuth2\n\n## Related resources\n\nRefer to [Philips Hue's CLIP API documentation](https://developers.meethue.com/develop/hue-api-v2/api-reference/) for more information about the service.\n\n## Using OAuth2\n\nNote for n8n Cloud users\n\nCloud users don't need to provide connection details. Select **Connect my account** to connect through your browser.\n\nIf you're using the built-in OAuth connection, you don't need to enter an **APP ID**.\n\nIf you need to configure OAuth2 from scratch, you'll need a [Philips Hue developer](https://developers.meethue.com/) account\n\nCreate a new remote app on the [Add new Hue Remote API app](https://developers.meethue.com/add-new-hue-remote-api-app/) page.\n\nUse these settings for your app:\n\n- Copy the **OAuth Callback URL** from n8n and add it as a **Callback URL**.\n- Copy the **AppId**, **ClientId**, and **ClientSecret** and enter these in the corresponding fields in n8n.\n",
69336
- "excerpt": "# Philips Hue credentials You can use these credentials to authenticate the following nodes: - [Philips Hue](../../app-nodes/n8n-nodes-base.philipshue/) ## Prerequisites Create a [Philips Hue](https://www.philips-hue.com/en-us) account. ## Supported authentication methods - OAuth2 ## Related resources Refer to [Philips Hue's CLIP API documentation](https://developers.meethue.com/develop/hue-api-v2/api-reference/) for more information about the service. ## Using OAuth2 Note for n8n Clou...",
69337
- "sections": [
69338
- {
69339
- "title": "Philips Hue credentials",
69340
- "level": 1,
69341
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [Philips Hue](../../app-nodes/n8n-nodes-base.philipshue/)"
69342
- }
69343
- ]
69344
- },
69345
- "metadata": {
69346
- "keywords": [
69347
- "philips",
69348
- "credentials",
69349
- "prerequisites",
69350
- "supported",
69351
- "authentication",
69352
- "methods",
69353
- "related",
69354
- "resources",
69355
- "using",
69356
- "oauth2"
69357
- ],
69358
- "useCases": [],
69359
- "operations": [],
69360
- "codeExamples": 0,
69361
- "complexity": "beginner",
69362
- "readingTime": "1 min",
69363
- "contentLength": 1187,
69364
- "relatedPages": []
69365
- },
69366
- "searchIndex": {
69367
- "fullText": "philips hue credentials # philips hue credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [philips hue](../../app-nodes/n8n-nodes-base.philipshue/)\n\n## prerequisites\n\ncreate a [philips hue](https://www.philips-hue.com/en-us) account.\n\n## supported authentication methods\n\n- oauth2\n\n## related resources\n\nrefer to [philips hue's clip api documentation](https://developers.meethue.com/develop/hue-api-v2/api-reference/) for more information about the service.\n\n## using oauth2\n\nnote for n8n cloud users\n\ncloud users don't need to provide connection details. select **connect my account** to connect through your browser.\n\nif you're using the built-in oauth connection, you don't need to enter an **app id**.\n\nif you need to configure oauth2 from scratch, you'll need a [philips hue developer](https://developers.meethue.com/) account\n\ncreate a new remote app on the [add new hue remote api app](https://developers.meethue.com/add-new-hue-remote-api-app/) page.\n\nuse these settings for your app:\n\n- copy the **oauth callback url** from n8n and add it as a **callback url**.\n- copy the **appid**, **clientid**, and **clientsecret** and enter these in the corresponding fields in n8n.\n philips hue credentials",
69368
- "importantTerms": [
69369
- "philips",
69370
- "credentials",
69371
- "https",
69372
- "need",
69373
- "these",
69374
- "nodes",
69375
- "account",
69376
- "developers",
69377
- "meethue",
69378
- "remote"
69379
- ]
69380
- }
69381
- },
69382
- {
69383
- "id": "page-0916",
69384
69327
  "title": "Pinecone credentials",
69385
69328
  "url": "https://docs.n8n.io/integrations/builtin/credentials/pinecone/index.md",
69386
69329
  "urlPath": "integrations/builtin/credentials/pinecone/index.md",
@@ -69435,7 +69378,7 @@
69435
69378
  }
69436
69379
  },
69437
69380
  {
69438
- "id": "page-0917",
69381
+ "id": "page-0916",
69439
69382
  "title": "Pipedrive credentials",
69440
69383
  "url": "https://docs.n8n.io/integrations/builtin/credentials/pipedrive/index.md",
69441
69384
  "urlPath": "integrations/builtin/credentials/pipedrive/index.md",
@@ -69534,6 +69477,63 @@
69534
69477
  ]
69535
69478
  }
69536
69479
  },
69480
+ {
69481
+ "id": "page-0917",
69482
+ "title": "Philips Hue credentials",
69483
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/philipshue/index.md",
69484
+ "urlPath": "integrations/builtin/credentials/philipshue/index.md",
69485
+ "category": "other",
69486
+ "subcategory": null,
69487
+ "nodeName": null,
69488
+ "nodeType": null,
69489
+ "content": {
69490
+ "markdown": "# Philips Hue credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Philips Hue](../../app-nodes/n8n-nodes-base.philipshue/)\n\n## Prerequisites\n\nCreate a [Philips Hue](https://www.philips-hue.com/en-us) account.\n\n## Supported authentication methods\n\n- OAuth2\n\n## Related resources\n\nRefer to [Philips Hue's CLIP API documentation](https://developers.meethue.com/develop/hue-api-v2/api-reference/) for more information about the service.\n\n## Using OAuth2\n\nNote for n8n Cloud users\n\nCloud users don't need to provide connection details. Select **Connect my account** to connect through your browser.\n\nIf you're using the built-in OAuth connection, you don't need to enter an **APP ID**.\n\nIf you need to configure OAuth2 from scratch, you'll need a [Philips Hue developer](https://developers.meethue.com/) account\n\nCreate a new remote app on the [Add new Hue Remote API app](https://developers.meethue.com/add-new-hue-remote-api-app/) page.\n\nUse these settings for your app:\n\n- Copy the **OAuth Callback URL** from n8n and add it as a **Callback URL**.\n- Copy the **AppId**, **ClientId**, and **ClientSecret** and enter these in the corresponding fields in n8n.\n",
69491
+ "excerpt": "# Philips Hue credentials You can use these credentials to authenticate the following nodes: - [Philips Hue](../../app-nodes/n8n-nodes-base.philipshue/) ## Prerequisites Create a [Philips Hue](https://www.philips-hue.com/en-us) account. ## Supported authentication methods - OAuth2 ## Related resources Refer to [Philips Hue's CLIP API documentation](https://developers.meethue.com/develop/hue-api-v2/api-reference/) for more information about the service. ## Using OAuth2 Note for n8n Clou...",
69492
+ "sections": [
69493
+ {
69494
+ "title": "Philips Hue credentials",
69495
+ "level": 1,
69496
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [Philips Hue](../../app-nodes/n8n-nodes-base.philipshue/)"
69497
+ }
69498
+ ]
69499
+ },
69500
+ "metadata": {
69501
+ "keywords": [
69502
+ "philips",
69503
+ "credentials",
69504
+ "prerequisites",
69505
+ "supported",
69506
+ "authentication",
69507
+ "methods",
69508
+ "related",
69509
+ "resources",
69510
+ "using",
69511
+ "oauth2"
69512
+ ],
69513
+ "useCases": [],
69514
+ "operations": [],
69515
+ "codeExamples": 0,
69516
+ "complexity": "beginner",
69517
+ "readingTime": "1 min",
69518
+ "contentLength": 1187,
69519
+ "relatedPages": []
69520
+ },
69521
+ "searchIndex": {
69522
+ "fullText": "philips hue credentials # philips hue credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [philips hue](../../app-nodes/n8n-nodes-base.philipshue/)\n\n## prerequisites\n\ncreate a [philips hue](https://www.philips-hue.com/en-us) account.\n\n## supported authentication methods\n\n- oauth2\n\n## related resources\n\nrefer to [philips hue's clip api documentation](https://developers.meethue.com/develop/hue-api-v2/api-reference/) for more information about the service.\n\n## using oauth2\n\nnote for n8n cloud users\n\ncloud users don't need to provide connection details. select **connect my account** to connect through your browser.\n\nif you're using the built-in oauth connection, you don't need to enter an **app id**.\n\nif you need to configure oauth2 from scratch, you'll need a [philips hue developer](https://developers.meethue.com/) account\n\ncreate a new remote app on the [add new hue remote api app](https://developers.meethue.com/add-new-hue-remote-api-app/) page.\n\nuse these settings for your app:\n\n- copy the **oauth callback url** from n8n and add it as a **callback url**.\n- copy the **appid**, **clientid**, and **clientsecret** and enter these in the corresponding fields in n8n.\n philips hue credentials",
69523
+ "importantTerms": [
69524
+ "philips",
69525
+ "credentials",
69526
+ "https",
69527
+ "need",
69528
+ "these",
69529
+ "nodes",
69530
+ "account",
69531
+ "developers",
69532
+ "meethue",
69533
+ "remote"
69534
+ ]
69535
+ }
69536
+ },
69537
69537
  {
69538
69538
  "id": "page-0918",
69539
69539
  "title": "Plivo credentials",
@@ -77584,6 +77584,146 @@
77584
77584
  },
77585
77585
  {
77586
77586
  "id": "page-1044",
77587
+ "title": "Bitbucket Trigger",
77588
+ "url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.bitbuckettrigger/index.md",
77589
+ "urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.bitbuckettrigger/index.md",
77590
+ "category": "trigger-nodes",
77591
+ "subcategory": null,
77592
+ "nodeName": "bitbuckettrigger",
77593
+ "nodeType": "n8n-nodes-base.bitbuckettrigger",
77594
+ "content": {
77595
+ "markdown": "# Bitbucket Trigger node\n\n[Bitbucket](https://bitbucket.org/) is a web-based version control repository hosting service owned by Atlassian, for source code and development projects that use either Mercurial or Git revision control systems.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/bitbucket/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Bitbucket Trigger integrations](https://n8n.io/integrations/bitbucket-trigger/) page.\n",
77596
+ "excerpt": "# Bitbucket Trigger node [Bitbucket](https://bitbucket.org/) is a web-based version control repository hosting service owned by Atlassian, for source code and development projects that use either Mercurial or Git revision control systems. Credentials You can find authentication information for this node [here](../../credentials/bitbucket/). Examples and templates For usage examples and templates to help you get started, refer to n8n's [Bitbucket Trigger integrations](https://n8n.io/integrat...",
77597
+ "sections": [
77598
+ {
77599
+ "title": "Bitbucket Trigger node",
77600
+ "level": 1,
77601
+ "content": "[Bitbucket](https://bitbucket.org/) is a web-based version control repository hosting service owned by Atlassian, for source code and development projects that use either Mercurial or Git revision control systems.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/bitbucket/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Bitbucket Trigger integrations](https://n8n.io/integrations/bitbucket-trigger/) page."
77602
+ }
77603
+ ]
77604
+ },
77605
+ "metadata": {
77606
+ "keywords": [
77607
+ "bitbucket",
77608
+ "trigger",
77609
+ "node"
77610
+ ],
77611
+ "useCases": [],
77612
+ "operations": [],
77613
+ "codeExamples": 0,
77614
+ "complexity": "beginner",
77615
+ "readingTime": "1 min",
77616
+ "contentLength": 531,
77617
+ "relatedPages": []
77618
+ },
77619
+ "searchIndex": {
77620
+ "fullText": "bitbucket trigger # bitbucket trigger node\n\n[bitbucket](https://bitbucket.org/) is a web-based version control repository hosting service owned by atlassian, for source code and development projects that use either mercurial or git revision control systems.\n\ncredentials\n\nyou can find authentication information for this node [here](../../credentials/bitbucket/).\n\nexamples and templates\n\nfor usage examples and templates to help you get started, refer to n8n's [bitbucket trigger integrations](https://n8n.io/integrations/bitbucket-trigger/) page.\n bitbucket trigger node",
77621
+ "importantTerms": [
77622
+ "bitbucket",
77623
+ "trigger",
77624
+ "node"
77625
+ ]
77626
+ }
77627
+ },
77628
+ {
77629
+ "id": "page-1045",
77630
+ "title": "Box Trigger",
77631
+ "url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.boxtrigger/index.md",
77632
+ "urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.boxtrigger/index.md",
77633
+ "category": "trigger-nodes",
77634
+ "subcategory": null,
77635
+ "nodeName": "boxtrigger",
77636
+ "nodeType": "n8n-nodes-base.boxtrigger",
77637
+ "content": {
77638
+ "markdown": "# Box Trigger node\n\n[Box](https://www.box.com/) is a cloud computing company which provides file sharing, collaborating, and other tools for working with files uploaded to its servers.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/box/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Box Trigger integrations](https://n8n.io/integrations/box-trigger/) page.\n\n## Find your Box Target ID\n\nTo get your Target ID in Box:\n\n1. Open the file/folder that you would like to monitor.\n1. Copy the string of characters after `folder/` in your URL. This is the target ID. For example, if the URL is `https://app.box.com/folder/12345`, then `12345` is the target ID.\n1. Paste it in the **Target ID** field in n8n.\n",
77639
+ "excerpt": "# Box Trigger node [Box](https://www.box.com/) is a cloud computing company which provides file sharing, collaborating, and other tools for working with files uploaded to its servers. Credentials You can find authentication information for this node [here](../../credentials/box/). Examples and templates For usage examples and templates to help you get started, refer to n8n's [Box Trigger integrations](https://n8n.io/integrations/box-trigger/) page. ## Find your Box Target ID To get your T...",
77640
+ "sections": [
77641
+ {
77642
+ "title": "Box Trigger node",
77643
+ "level": 1,
77644
+ "content": "[Box](https://www.box.com/) is a cloud computing company which provides file sharing, collaborating, and other tools for working with files uploaded to its servers.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/box/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Box Trigger integrations](https://n8n.io/integrations/box-trigger/) page."
77645
+ }
77646
+ ]
77647
+ },
77648
+ "metadata": {
77649
+ "keywords": [
77650
+ "trigger",
77651
+ "node",
77652
+ "find",
77653
+ "your",
77654
+ "target"
77655
+ ],
77656
+ "useCases": [],
77657
+ "operations": [],
77658
+ "codeExamples": 0,
77659
+ "complexity": "beginner",
77660
+ "readingTime": "1 min",
77661
+ "contentLength": 800,
77662
+ "relatedPages": []
77663
+ },
77664
+ "searchIndex": {
77665
+ "fullText": "box trigger # box trigger node\n\n[box](https://www.box.com/) is a cloud computing company which provides file sharing, collaborating, and other tools for working with files uploaded to its servers.\n\ncredentials\n\nyou can find authentication information for this node [here](../../credentials/box/).\n\nexamples and templates\n\nfor usage examples and templates to help you get started, refer to n8n's [box trigger integrations](https://n8n.io/integrations/box-trigger/) page.\n\n## find your box target id\n\nto get your target id in box:\n\n1. open the file/folder that you would like to monitor.\n1. copy the string of characters after `folder/` in your url. this is the target id. for example, if the url is `https://app.box.com/folder/12345`, then `12345` is the target id.\n1. paste it in the **target id** field in n8n.\n box trigger node",
77666
+ "importantTerms": [
77667
+ "trigger",
77668
+ "target",
77669
+ "node",
77670
+ "https",
77671
+ "your",
77672
+ "folder"
77673
+ ]
77674
+ }
77675
+ },
77676
+ {
77677
+ "id": "page-1046",
77678
+ "title": "Brevo Trigger",
77679
+ "url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.brevotrigger/index.md",
77680
+ "urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.brevotrigger/index.md",
77681
+ "category": "trigger-nodes",
77682
+ "subcategory": null,
77683
+ "nodeName": "brevotrigger",
77684
+ "nodeType": "n8n-nodes-base.brevotrigger",
77685
+ "content": {
77686
+ "markdown": "# Brevo Trigger node\n\n[Brevo](https://www.brevo.com/) is a digital marketing platform to help users grow their business.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/brevo/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Brevo Trigger integrations](https://n8n.io/integrations/brevo-trigger/) page.\n\n## Events\n\n- Email blocked\n- Email clicked\n- Email deferred\n- Email delivered\n- Email hard bounce\n- Email invalid\n- Email marked spam\n- Email opened\n- Email sent\n- Email soft bounce\n- Email unique open\n- Email unsubscribed\n\n## Related resources\n\nn8n provides an app node for Brevo. You can find the node docs [here](../../app-nodes/n8n-nodes-base.brevo/).\n\nView [example workflows and related content](https://n8n.io/integrations/brevo-trigger/) on n8n's website.\n\nRefer to [Brevo's documentation](https://developers.brevo.com/) for details about their API.\n",
77687
+ "excerpt": "# Brevo Trigger node [Brevo](https://www.brevo.com/) is a digital marketing platform to help users grow their business. Credentials You can find authentication information for this node [here](../../credentials/brevo/). Examples and templates For usage examples and templates to help you get started, refer to n8n's [Brevo Trigger integrations](https://n8n.io/integrations/brevo-trigger/) page. ## Events - Email blocked - Email clicked - Email deferred - Email delivered - Email hard bounce -...",
77688
+ "sections": [
77689
+ {
77690
+ "title": "Brevo Trigger node",
77691
+ "level": 1,
77692
+ "content": "[Brevo](https://www.brevo.com/) is a digital marketing platform to help users grow their business.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/brevo/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Brevo Trigger integrations](https://n8n.io/integrations/brevo-trigger/) page."
77693
+ }
77694
+ ]
77695
+ },
77696
+ "metadata": {
77697
+ "keywords": [
77698
+ "brevo",
77699
+ "trigger",
77700
+ "node",
77701
+ "events",
77702
+ "related",
77703
+ "resources"
77704
+ ],
77705
+ "useCases": [],
77706
+ "operations": [],
77707
+ "codeExamples": 0,
77708
+ "complexity": "beginner",
77709
+ "readingTime": "1 min",
77710
+ "contentLength": 959,
77711
+ "relatedPages": []
77712
+ },
77713
+ "searchIndex": {
77714
+ "fullText": "brevo trigger # brevo trigger node\n\n[brevo](https://www.brevo.com/) is a digital marketing platform to help users grow their business.\n\ncredentials\n\nyou can find authentication information for this node [here](../../credentials/brevo/).\n\nexamples and templates\n\nfor usage examples and templates to help you get started, refer to n8n's [brevo trigger integrations](https://n8n.io/integrations/brevo-trigger/) page.\n\n## events\n\n- email blocked\n- email clicked\n- email deferred\n- email delivered\n- email hard bounce\n- email invalid\n- email marked spam\n- email opened\n- email sent\n- email soft bounce\n- email unique open\n- email unsubscribed\n\n## related resources\n\nn8n provides an app node for brevo. you can find the node docs [here](../../app-nodes/n8n-nodes-base.brevo/).\n\nview [example workflows and related content](https://n8n.io/integrations/brevo-trigger/) on n8n's website.\n\nrefer to [brevo's documentation](https://developers.brevo.com/) for details about their api.\n brevo trigger node",
77715
+ "importantTerms": [
77716
+ "brevo",
77717
+ "email",
77718
+ "trigger",
77719
+ "node",
77720
+ "https",
77721
+ "integrations"
77722
+ ]
77723
+ }
77724
+ },
77725
+ {
77726
+ "id": "page-1047",
77587
77727
  "title": "AWS SNS Trigger",
77588
77728
  "url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.awssnstrigger/index.md",
77589
77729
  "urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.awssnstrigger/index.md",
@@ -77629,146 +77769,6 @@
77629
77769
  ]
77630
77770
  }
77631
77771
  },
77632
- {
77633
- "id": "page-1045",
77634
- "title": "Bitbucket Trigger",
77635
- "url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.bitbuckettrigger/index.md",
77636
- "urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.bitbuckettrigger/index.md",
77637
- "category": "trigger-nodes",
77638
- "subcategory": null,
77639
- "nodeName": "bitbuckettrigger",
77640
- "nodeType": "n8n-nodes-base.bitbuckettrigger",
77641
- "content": {
77642
- "markdown": "# Bitbucket Trigger node\n\n[Bitbucket](https://bitbucket.org/) is a web-based version control repository hosting service owned by Atlassian, for source code and development projects that use either Mercurial or Git revision control systems.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/bitbucket/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Bitbucket Trigger integrations](https://n8n.io/integrations/bitbucket-trigger/) page.\n",
77643
- "excerpt": "# Bitbucket Trigger node [Bitbucket](https://bitbucket.org/) is a web-based version control repository hosting service owned by Atlassian, for source code and development projects that use either Mercurial or Git revision control systems. Credentials You can find authentication information for this node [here](../../credentials/bitbucket/). Examples and templates For usage examples and templates to help you get started, refer to n8n's [Bitbucket Trigger integrations](https://n8n.io/integrat...",
77644
- "sections": [
77645
- {
77646
- "title": "Bitbucket Trigger node",
77647
- "level": 1,
77648
- "content": "[Bitbucket](https://bitbucket.org/) is a web-based version control repository hosting service owned by Atlassian, for source code and development projects that use either Mercurial or Git revision control systems.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/bitbucket/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Bitbucket Trigger integrations](https://n8n.io/integrations/bitbucket-trigger/) page."
77649
- }
77650
- ]
77651
- },
77652
- "metadata": {
77653
- "keywords": [
77654
- "bitbucket",
77655
- "trigger",
77656
- "node"
77657
- ],
77658
- "useCases": [],
77659
- "operations": [],
77660
- "codeExamples": 0,
77661
- "complexity": "beginner",
77662
- "readingTime": "1 min",
77663
- "contentLength": 531,
77664
- "relatedPages": []
77665
- },
77666
- "searchIndex": {
77667
- "fullText": "bitbucket trigger # bitbucket trigger node\n\n[bitbucket](https://bitbucket.org/) is a web-based version control repository hosting service owned by atlassian, for source code and development projects that use either mercurial or git revision control systems.\n\ncredentials\n\nyou can find authentication information for this node [here](../../credentials/bitbucket/).\n\nexamples and templates\n\nfor usage examples and templates to help you get started, refer to n8n's [bitbucket trigger integrations](https://n8n.io/integrations/bitbucket-trigger/) page.\n bitbucket trigger node",
77668
- "importantTerms": [
77669
- "bitbucket",
77670
- "trigger",
77671
- "node"
77672
- ]
77673
- }
77674
- },
77675
- {
77676
- "id": "page-1046",
77677
- "title": "Box Trigger",
77678
- "url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.boxtrigger/index.md",
77679
- "urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.boxtrigger/index.md",
77680
- "category": "trigger-nodes",
77681
- "subcategory": null,
77682
- "nodeName": "boxtrigger",
77683
- "nodeType": "n8n-nodes-base.boxtrigger",
77684
- "content": {
77685
- "markdown": "# Box Trigger node\n\n[Box](https://www.box.com/) is a cloud computing company which provides file sharing, collaborating, and other tools for working with files uploaded to its servers.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/box/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Box Trigger integrations](https://n8n.io/integrations/box-trigger/) page.\n\n## Find your Box Target ID\n\nTo get your Target ID in Box:\n\n1. Open the file/folder that you would like to monitor.\n1. Copy the string of characters after `folder/` in your URL. This is the target ID. For example, if the URL is `https://app.box.com/folder/12345`, then `12345` is the target ID.\n1. Paste it in the **Target ID** field in n8n.\n",
77686
- "excerpt": "# Box Trigger node [Box](https://www.box.com/) is a cloud computing company which provides file sharing, collaborating, and other tools for working with files uploaded to its servers. Credentials You can find authentication information for this node [here](../../credentials/box/). Examples and templates For usage examples and templates to help you get started, refer to n8n's [Box Trigger integrations](https://n8n.io/integrations/box-trigger/) page. ## Find your Box Target ID To get your T...",
77687
- "sections": [
77688
- {
77689
- "title": "Box Trigger node",
77690
- "level": 1,
77691
- "content": "[Box](https://www.box.com/) is a cloud computing company which provides file sharing, collaborating, and other tools for working with files uploaded to its servers.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/box/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Box Trigger integrations](https://n8n.io/integrations/box-trigger/) page."
77692
- }
77693
- ]
77694
- },
77695
- "metadata": {
77696
- "keywords": [
77697
- "trigger",
77698
- "node",
77699
- "find",
77700
- "your",
77701
- "target"
77702
- ],
77703
- "useCases": [],
77704
- "operations": [],
77705
- "codeExamples": 0,
77706
- "complexity": "beginner",
77707
- "readingTime": "1 min",
77708
- "contentLength": 800,
77709
- "relatedPages": []
77710
- },
77711
- "searchIndex": {
77712
- "fullText": "box trigger # box trigger node\n\n[box](https://www.box.com/) is a cloud computing company which provides file sharing, collaborating, and other tools for working with files uploaded to its servers.\n\ncredentials\n\nyou can find authentication information for this node [here](../../credentials/box/).\n\nexamples and templates\n\nfor usage examples and templates to help you get started, refer to n8n's [box trigger integrations](https://n8n.io/integrations/box-trigger/) page.\n\n## find your box target id\n\nto get your target id in box:\n\n1. open the file/folder that you would like to monitor.\n1. copy the string of characters after `folder/` in your url. this is the target id. for example, if the url is `https://app.box.com/folder/12345`, then `12345` is the target id.\n1. paste it in the **target id** field in n8n.\n box trigger node",
77713
- "importantTerms": [
77714
- "trigger",
77715
- "target",
77716
- "node",
77717
- "https",
77718
- "your",
77719
- "folder"
77720
- ]
77721
- }
77722
- },
77723
- {
77724
- "id": "page-1047",
77725
- "title": "Brevo Trigger",
77726
- "url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.brevotrigger/index.md",
77727
- "urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.brevotrigger/index.md",
77728
- "category": "trigger-nodes",
77729
- "subcategory": null,
77730
- "nodeName": "brevotrigger",
77731
- "nodeType": "n8n-nodes-base.brevotrigger",
77732
- "content": {
77733
- "markdown": "# Brevo Trigger node\n\n[Brevo](https://www.brevo.com/) is a digital marketing platform to help users grow their business.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/brevo/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Brevo Trigger integrations](https://n8n.io/integrations/brevo-trigger/) page.\n\n## Events\n\n- Email blocked\n- Email clicked\n- Email deferred\n- Email delivered\n- Email hard bounce\n- Email invalid\n- Email marked spam\n- Email opened\n- Email sent\n- Email soft bounce\n- Email unique open\n- Email unsubscribed\n\n## Related resources\n\nn8n provides an app node for Brevo. You can find the node docs [here](../../app-nodes/n8n-nodes-base.brevo/).\n\nView [example workflows and related content](https://n8n.io/integrations/brevo-trigger/) on n8n's website.\n\nRefer to [Brevo's documentation](https://developers.brevo.com/) for details about their API.\n",
77734
- "excerpt": "# Brevo Trigger node [Brevo](https://www.brevo.com/) is a digital marketing platform to help users grow their business. Credentials You can find authentication information for this node [here](../../credentials/brevo/). Examples and templates For usage examples and templates to help you get started, refer to n8n's [Brevo Trigger integrations](https://n8n.io/integrations/brevo-trigger/) page. ## Events - Email blocked - Email clicked - Email deferred - Email delivered - Email hard bounce -...",
77735
- "sections": [
77736
- {
77737
- "title": "Brevo Trigger node",
77738
- "level": 1,
77739
- "content": "[Brevo](https://www.brevo.com/) is a digital marketing platform to help users grow their business.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/brevo/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Brevo Trigger integrations](https://n8n.io/integrations/brevo-trigger/) page."
77740
- }
77741
- ]
77742
- },
77743
- "metadata": {
77744
- "keywords": [
77745
- "brevo",
77746
- "trigger",
77747
- "node",
77748
- "events",
77749
- "related",
77750
- "resources"
77751
- ],
77752
- "useCases": [],
77753
- "operations": [],
77754
- "codeExamples": 0,
77755
- "complexity": "beginner",
77756
- "readingTime": "1 min",
77757
- "contentLength": 959,
77758
- "relatedPages": []
77759
- },
77760
- "searchIndex": {
77761
- "fullText": "brevo trigger # brevo trigger node\n\n[brevo](https://www.brevo.com/) is a digital marketing platform to help users grow their business.\n\ncredentials\n\nyou can find authentication information for this node [here](../../credentials/brevo/).\n\nexamples and templates\n\nfor usage examples and templates to help you get started, refer to n8n's [brevo trigger integrations](https://n8n.io/integrations/brevo-trigger/) page.\n\n## events\n\n- email blocked\n- email clicked\n- email deferred\n- email delivered\n- email hard bounce\n- email invalid\n- email marked spam\n- email opened\n- email sent\n- email soft bounce\n- email unique open\n- email unsubscribed\n\n## related resources\n\nn8n provides an app node for brevo. you can find the node docs [here](../../app-nodes/n8n-nodes-base.brevo/).\n\nview [example workflows and related content](https://n8n.io/integrations/brevo-trigger/) on n8n's website.\n\nrefer to [brevo's documentation](https://developers.brevo.com/) for details about their api.\n brevo trigger node",
77762
- "importantTerms": [
77763
- "brevo",
77764
- "email",
77765
- "trigger",
77766
- "node",
77767
- "https",
77768
- "integrations"
77769
- ]
77770
- }
77771
- },
77772
77772
  {
77773
77773
  "id": "page-1048",
77774
77774
  "title": "Calendly Trigger",
@@ -92323,7 +92323,7 @@
92323
92323
  "page-0716",
92324
92324
  "page-0717",
92325
92325
  "page-0830",
92326
- "page-0917",
92326
+ "page-0916",
92327
92327
  "page-1037",
92328
92328
  "page-1038",
92329
92329
  "page-1039",
@@ -92671,7 +92671,7 @@
92671
92671
  "page-0153",
92672
92672
  "page-0164",
92673
92673
  "page-0193",
92674
- "page-0613",
92674
+ "page-0615",
92675
92675
  "page-0628",
92676
92676
  "page-0654",
92677
92677
  "page-0655",
@@ -92755,7 +92755,7 @@
92755
92755
  "page-0794",
92756
92756
  "page-0796",
92757
92757
  "page-0810",
92758
- "page-0841",
92758
+ "page-0840",
92759
92759
  "page-0966",
92760
92760
  "page-1024",
92761
92761
  "page-1027",
@@ -93128,7 +93128,7 @@
93128
93128
  "page-0513",
93129
93129
  "page-0514",
93130
93130
  "page-0515",
93131
- "page-0517",
93131
+ "page-0516",
93132
93132
  "page-0518",
93133
93133
  "page-0519",
93134
93134
  "page-0520",
@@ -93479,7 +93479,7 @@
93479
93479
  "page-0751",
93480
93480
  "page-0761",
93481
93481
  "page-0764",
93482
- "page-0765",
93482
+ "page-0766",
93483
93483
  "page-0767",
93484
93484
  "page-0776",
93485
93485
  "page-0785",
@@ -94517,7 +94517,7 @@
94517
94517
  "page-1025",
94518
94518
  "page-1026",
94519
94519
  "page-1027",
94520
- "page-1046",
94520
+ "page-1045",
94521
94521
  "page-1144",
94522
94522
  "page-1147",
94523
94523
  "page-1150",
@@ -95653,7 +95653,7 @@
95653
95653
  "page-0037",
95654
95654
  "page-0039",
95655
95655
  "page-0041",
95656
- "page-0516",
95656
+ "page-0517",
95657
95657
  "page-0546",
95658
95658
  "page-0547",
95659
95659
  "page-0548",
@@ -95859,7 +95859,7 @@
95859
95859
  "page-0804",
95860
95860
  "page-0805",
95861
95861
  "page-0830",
95862
- "page-0917",
95862
+ "page-0916",
95863
95863
  "page-0956",
95864
95864
  "page-1037",
95865
95865
  "page-1038",
@@ -96117,8 +96117,8 @@
96117
96117
  "page-0007",
96118
96118
  "page-0080",
96119
96119
  "page-0515",
96120
- "page-0516",
96121
- "page-0613",
96120
+ "page-0517",
96121
+ "page-0615",
96122
96122
  "page-0664",
96123
96123
  "page-0885"
96124
96124
  ],
@@ -96291,8 +96291,8 @@
96291
96291
  "page-0536",
96292
96292
  "page-0545",
96293
96293
  "page-0556",
96294
+ "page-0613",
96294
96295
  "page-0614",
96295
- "page-0615",
96296
96296
  "page-0645",
96297
96297
  "page-0649",
96298
96298
  "page-0660",
@@ -96434,7 +96434,7 @@
96434
96434
  "page-0513",
96435
96435
  "page-0698",
96436
96436
  "page-0734",
96437
- "page-0841",
96437
+ "page-0840",
96438
96438
  "page-0849",
96439
96439
  "page-0851",
96440
96440
  "page-0950",
@@ -96465,7 +96465,7 @@
96465
96465
  "page-1040",
96466
96466
  "page-1042",
96467
96467
  "page-1043",
96468
- "page-1044",
96468
+ "page-1046",
96469
96469
  "page-1047",
96470
96470
  "page-1048",
96471
96471
  "page-1049",
@@ -96848,7 +96848,7 @@
96848
96848
  "page-0592",
96849
96849
  "page-0714",
96850
96850
  "page-0794",
96851
- "page-0841",
96851
+ "page-0840",
96852
96852
  "page-0882",
96853
96853
  "page-0941",
96854
96854
  "page-0985",
@@ -97368,7 +97368,7 @@
97368
97368
  "page-0030",
97369
97369
  "page-0188",
97370
97370
  "page-0564",
97371
- "page-0613",
97371
+ "page-0615",
97372
97372
  "page-0628",
97373
97373
  "page-0654",
97374
97374
  "page-0664",
@@ -98367,7 +98367,7 @@
98367
98367
  "page-1039",
98368
98368
  "page-1040",
98369
98369
  "page-1042",
98370
- "page-1044",
98370
+ "page-1046",
98371
98371
  "page-1047",
98372
98372
  "page-1052",
98373
98373
  "page-1054",
@@ -98906,7 +98906,7 @@
98906
98906
  "page-1039",
98907
98907
  "page-1040",
98908
98908
  "page-1042",
98909
- "page-1044",
98909
+ "page-1046",
98910
98910
  "page-1047",
98911
98911
  "page-1052",
98912
98912
  "page-1054",
@@ -99234,7 +99234,7 @@
99234
99234
  "page-0508",
99235
99235
  "page-0512",
99236
99236
  "page-0514",
99237
- "page-0517",
99237
+ "page-0516",
99238
99238
  "page-0519",
99239
99239
  "page-0527",
99240
99240
  "page-0529",
@@ -99506,7 +99506,7 @@
99506
99506
  "page-0894",
99507
99507
  "page-0896",
99508
99508
  "page-0910",
99509
- "page-0915",
99509
+ "page-0916",
99510
99510
  "page-0917",
99511
99511
  "page-0923",
99512
99512
  "page-0931",
@@ -99564,7 +99564,7 @@
99564
99564
  "page-0761",
99565
99565
  "page-0763",
99566
99566
  "page-0764",
99567
- "page-0765",
99567
+ "page-0766",
99568
99568
  "page-0767",
99569
99569
  "page-0768",
99570
99570
  "page-0776",
@@ -99585,7 +99585,7 @@
99585
99585
  "page-0828",
99586
99586
  "page-0830",
99587
99587
  "page-0839",
99588
- "page-0841",
99588
+ "page-0840",
99589
99589
  "page-0847",
99590
99590
  "page-0848",
99591
99591
  "page-0857",
@@ -99606,7 +99606,7 @@
99606
99606
  "page-0908",
99607
99607
  "page-0909",
99608
99608
  "page-0910",
99609
- "page-0917",
99609
+ "page-0916",
99610
99610
  "page-0921",
99611
99611
  "page-0922",
99612
99612
  "page-0935",
@@ -100024,7 +100024,7 @@
100024
100024
  "page-0508",
100025
100025
  "page-0512",
100026
100026
  "page-0514",
100027
- "page-0517",
100027
+ "page-0516",
100028
100028
  "page-0519",
100029
100029
  "page-0527",
100030
100030
  "page-0529",
@@ -100439,7 +100439,7 @@
100439
100439
  "page-0101",
100440
100440
  "page-0110",
100441
100441
  "page-0131",
100442
- "page-0516",
100442
+ "page-0517",
100443
100443
  "page-0682",
100444
100444
  "page-1202"
100445
100445
  ],
@@ -100797,7 +100797,7 @@
100797
100797
  "page-0513",
100798
100798
  "page-0514",
100799
100799
  "page-0515",
100800
- "page-0517",
100800
+ "page-0516",
100801
100801
  "page-0518",
100802
100802
  "page-0519",
100803
100803
  "page-0520",
@@ -101236,7 +101236,7 @@
101236
101236
  "pinecone": [
101237
101237
  "page-0039",
101238
101238
  "page-0552",
101239
- "page-0916"
101239
+ "page-0915"
101240
101240
  ],
101241
101241
  "database": [
101242
101242
  "page-0039",
@@ -101247,7 +101247,7 @@
101247
101247
  "page-0203",
101248
101248
  "page-0222",
101249
101249
  "page-0319",
101250
- "page-0516",
101250
+ "page-0517",
101251
101251
  "page-0520",
101252
101252
  "page-0801",
101253
101253
  "page-0876",
@@ -101355,7 +101355,7 @@
101355
101355
  "page-0830",
101356
101356
  "page-0872",
101357
101357
  "page-0875",
101358
- "page-0917",
101358
+ "page-0916",
101359
101359
  "page-0956",
101360
101360
  "page-0970",
101361
101361
  "page-1025",
@@ -101500,7 +101500,7 @@
101500
101500
  "page-0552",
101501
101501
  "page-0700",
101502
101502
  "page-0794",
101503
- "page-1046",
101503
+ "page-1045",
101504
101504
  "page-1111",
101505
101505
  "page-1249"
101506
101506
  ],
@@ -102709,7 +102709,7 @@
102709
102709
  "page-0167",
102710
102710
  "page-0207",
102711
102711
  "page-0211",
102712
- "page-0516",
102712
+ "page-0517",
102713
102713
  "page-0587",
102714
102714
  "page-0593",
102715
102715
  "page-0594",
@@ -102783,7 +102783,7 @@
102783
102783
  "page-0153",
102784
102784
  "page-0350",
102785
102785
  "page-0512",
102786
- "page-0517",
102786
+ "page-0516",
102787
102787
  "page-0522",
102788
102788
  "page-0555",
102789
102789
  "page-0556",
@@ -103257,7 +103257,7 @@
103257
103257
  "page-0837",
103258
103258
  "page-0838",
103259
103259
  "page-0839",
103260
- "page-0841",
103260
+ "page-0840",
103261
103261
  "page-0845",
103262
103262
  "page-0846",
103263
103263
  "page-0847",
@@ -103317,7 +103317,7 @@
103317
103317
  "page-0911",
103318
103318
  "page-0912",
103319
103319
  "page-0914",
103320
- "page-0915",
103320
+ "page-0917",
103321
103321
  "page-0918",
103322
103322
  "page-0919",
103323
103323
  "page-0920",
@@ -103634,7 +103634,7 @@
103634
103634
  "json": [
103635
103635
  "page-0100",
103636
103636
  "page-0131",
103637
- "page-0516",
103637
+ "page-0517",
103638
103638
  "page-0645",
103639
103639
  "page-0659",
103640
103640
  "page-0682",
@@ -103726,7 +103726,7 @@
103726
103726
  "boolean": [
103727
103727
  "page-0112",
103728
103728
  "page-0115",
103729
- "page-0516",
103729
+ "page-0517",
103730
103730
  "page-0658",
103731
103731
  "page-0665",
103732
103732
  "page-0690",
@@ -105593,7 +105593,7 @@
105593
105593
  "page-0200",
105594
105594
  "page-0203",
105595
105595
  "page-0204",
105596
- "page-0517",
105596
+ "page-0516",
105597
105597
  "page-0518",
105598
105598
  "page-0520",
105599
105599
  "page-0602",
@@ -106913,7 +106913,7 @@
106913
106913
  "brevo": [
106914
106914
  "page-0267",
106915
106915
  "page-0748",
106916
- "page-1047"
106916
+ "page-1046"
106917
106917
  ],
106918
106918
  "bubble": [
106919
106919
  "page-0268",
@@ -106966,14 +106966,14 @@
106966
106966
  ],
106967
106967
  "coda": [
106968
106968
  "page-0277",
106969
- "page-0765"
106969
+ "page-0767"
106970
106970
  ],
106971
106971
  "coingecko": [
106972
106972
  "page-0278"
106973
106973
  ],
106974
106974
  "contentful": [
106975
106975
  "page-0279",
106976
- "page-0767"
106976
+ "page-0766"
106977
106977
  ],
106978
106978
  "convertkit": [
106979
106979
  "page-0280",
@@ -107228,17 +107228,17 @@
107228
107228
  ],
107229
107229
  "intercom": [
107230
107230
  "page-0341",
107231
- "page-0836"
107231
+ "page-0835"
107232
107232
  ],
107233
107233
  "invoice": [
107234
107234
  "page-0342",
107235
- "page-0837",
107235
+ "page-0836",
107236
107236
  "page-0878",
107237
107237
  "page-1073"
107238
107238
  ],
107239
107239
  "ninja": [
107240
107240
  "page-0342",
107241
- "page-0837",
107241
+ "page-0836",
107242
107242
  "page-1073"
107243
107243
  ],
107244
107244
  "iterable": [
@@ -107251,11 +107251,11 @@
107251
107251
  ],
107252
107252
  "jina": [
107253
107253
  "page-0345",
107254
- "page-0840"
107254
+ "page-0842"
107255
107255
  ],
107256
107256
  "jira": [
107257
107257
  "page-0346",
107258
- "page-0841",
107258
+ "page-0840",
107259
107259
  "page-1074"
107260
107260
  ],
107261
107261
  "software": [
@@ -107592,11 +107592,11 @@
107592
107592
  ],
107593
107593
  "philips": [
107594
107594
  "page-0410",
107595
- "page-0915"
107595
+ "page-0917"
107596
107596
  ],
107597
107597
  "pipedrive": [
107598
107598
  "page-0411",
107599
- "page-0917",
107599
+ "page-0916",
107600
107600
  "page-1094"
107601
107601
  ],
107602
107602
  "plivo": [
@@ -108250,20 +108250,20 @@
108250
108250
  "page-0515"
108251
108251
  ],
108252
108252
  "oracle": [
108253
- "page-0516",
108253
+ "page-0517",
108254
108254
  "page-0907"
108255
108255
  ],
108256
108256
  "statement": [
108257
- "page-0516"
108257
+ "page-0517"
108258
108258
  ],
108259
108259
  "bind": [
108260
- "page-0516"
108260
+ "page-0517"
108261
108261
  ],
108262
108262
  "blob": [
108263
- "page-0516"
108263
+ "page-0517"
108264
108264
  ],
108265
108265
  "varchar": [
108266
- "page-0516"
108266
+ "page-0517"
108267
108267
  ],
108268
108268
  "dynamically": [
108269
108269
  "page-0518"
@@ -108637,7 +108637,7 @@
108637
108637
  "page-0610",
108638
108638
  "page-0611",
108639
108639
  "page-0612",
108640
- "page-0613"
108640
+ "page-0615"
108641
108641
  ],
108642
108642
  "question": [
108643
108643
  "page-0546",
@@ -108939,7 +108939,7 @@
108939
108939
  "page-0586",
108940
108940
  "page-0596",
108941
108941
  "page-0609",
108942
- "page-0766"
108942
+ "page-0765"
108943
108943
  ],
108944
108944
  "palm": [
108945
108945
  "page-0576"
@@ -109087,16 +109087,16 @@
109087
109087
  "page-0611"
109088
109088
  ],
109089
109089
  "character": [
109090
- "page-0614",
109091
- "page-0615"
109090
+ "page-0613",
109091
+ "page-0614"
109092
109092
  ],
109093
109093
  "splitter": [
109094
+ "page-0613",
109094
109095
  "page-0614",
109095
- "page-0615",
109096
109096
  "page-0616"
109097
109097
  ],
109098
109098
  "recursive": [
109099
- "page-0615"
109099
+ "page-0614"
109100
109100
  ],
109101
109101
  "calculator": [
109102
109102
  "page-0618"
@@ -109839,7 +109839,7 @@
109839
109839
  ],
109840
109840
  "bitbucket": [
109841
109841
  "page-0743",
109842
- "page-1045"
109842
+ "page-1044"
109843
109843
  ],
109844
109844
  "calendly": [
109845
109845
  "page-0751",
@@ -109980,10 +109980,10 @@
109980
109980
  "page-0829"
109981
109981
  ],
109982
109982
  "imperva": [
109983
- "page-0835"
109983
+ "page-0837"
109984
109984
  ],
109985
109985
  "jotform": [
109986
- "page-0842",
109986
+ "page-0841",
109987
109987
  "page-1075"
109988
109988
  ],
109989
109989
  "passphrase": [
@@ -110251,7 +110251,7 @@
110251
110251
  "page-1040"
110252
110252
  ],
110253
110253
  "target": [
110254
- "page-1046"
110254
+ "page-1045"
110255
110255
  ],
110256
110256
  "(beta)": [
110257
110257
  "page-1061",
@@ -113355,13 +113355,13 @@
113355
113355
  "page-0514",
113356
113356
  "page-0515"
113357
113357
  ],
113358
- "oracledb": [
113359
- "page-0516"
113360
- ],
113361
113358
  "postgres": [
113362
- "page-0517",
113359
+ "page-0516",
113363
113360
  "page-0518"
113364
113361
  ],
113362
+ "oracledb": [
113363
+ "page-0517"
113364
+ ],
113365
113365
  "supabase": [
113366
113366
  "page-0519",
113367
113367
  "page-0520"
@@ -113595,16 +113595,16 @@
113595
113595
  "autopilottrigger": [
113596
113596
  "page-1043"
113597
113597
  ],
113598
- "awssnstrigger": [
113598
+ "bitbuckettrigger": [
113599
113599
  "page-1044"
113600
113600
  ],
113601
- "bitbuckettrigger": [
113601
+ "boxtrigger": [
113602
113602
  "page-1045"
113603
113603
  ],
113604
- "boxtrigger": [
113604
+ "brevotrigger": [
113605
113605
  "page-1046"
113606
113606
  ],
113607
- "brevotrigger": [
113607
+ "awssnstrigger": [
113608
113608
  "page-1047"
113609
113609
  ],
113610
113610
  "calendlytrigger": [