@n8n-as-code/skills 1.6.1-next.2 → 1.7.0-next.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,8 @@
1
1
  {
2
- "generatedAt": "2026-04-03T13:36:27.568Z",
2
+ "generatedAt": "2026-04-03T13:43:21.598Z",
3
3
  "version": "1.0.0",
4
4
  "sourceUrl": "https://docs.n8n.io/llms.txt",
5
- "totalPages": 1261,
5
+ "totalPages": 1262,
6
6
  "statistics": {
7
7
  "byCategory": {
8
8
  "other": 517,
@@ -12,7 +12,7 @@
12
12
  "code": 20,
13
13
  "data": 38,
14
14
  "flow-logic": 8,
15
- "hosting": 79,
15
+ "hosting": 80,
16
16
  "integrations": 306,
17
17
  "cluster-nodes": 101,
18
18
  "trigger-nodes": 107,
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "withNodeNames": 471,
23
23
  "withUseCases": 39,
24
- "withCodeExamples": 179
24
+ "withCodeExamples": 180
25
25
  },
26
26
  "categories": {
27
27
  "other": {
@@ -710,7 +710,7 @@
710
710
  },
711
711
  "hosting": {
712
712
  "description": "Self-hosting, deployment, and infrastructure",
713
- "totalPages": 79,
713
+ "totalPages": 80,
714
714
  "pages": [
715
715
  "page-0150",
716
716
  "page-0151",
@@ -764,6 +764,7 @@
764
764
  "page-0199",
765
765
  "page-0200",
766
766
  "page-0201",
767
+ "page-0202",
767
768
  "page-0203",
768
769
  "page-0204",
769
770
  "page-0205",
@@ -16822,6 +16823,123 @@
16822
16823
  "subcategory": null,
16823
16824
  "nodeName": null,
16824
16825
  "nodeType": null,
16826
+ "content": {
16827
+ "markdown": "# Hosting n8n on Azure\n\nThis hosting guide shows you how to self-host n8n on Azure. It uses n8n with Postgres as a database backend using Kubernetes to manage the necessary resources and reverse proxy.\n\n## Prerequisites\n\nYou need [The Azure command line tool](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli)\n\nSelf-hosting knowledge prerequisites\n\nSelf-hosting n8n requires technical knowledge, including:\n\n- Setting up and configuring servers and containers\n- Managing application resources and scaling\n- Securing servers and applications\n- Configuring n8n\n\nn8n recommends self-hosting for expert users. Mistakes can lead to data loss, security issues, and downtime. If you aren't experienced at managing servers, n8n recommends [n8n Cloud](https://n8n.io/cloud/).\n\nStable and Beta versions\n\nn8n releases a new minor version most weeks. The `stable` version is for production use. `beta` is the most recent release. The `beta` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\nCurrent `stable`: 2.14.2 Current `beta`: 2.15.0\n\n## Hosting options\n\nAzure offers several ways suitable for hosting n8n, including Azure Container Instances (optimized for running containers), Linux Virtual Machines, and Azure Kubernetes Service (containers running with Kubernetes).\n\nThis guide uses the Azure Kubernetes Service (AKS) as the hosting option. Using Kubernetes requires some additional complexity and configuration, but is the best method for scaling n8n as demand changes.\n\nThe steps in this guide use a mix of the Azure UI and command line tool, but you can use either to accomplish most tasks.\n\n## Open the Azure Kubernetes Service\n\nFrom [the Azure portal](https://portal.azure.com/) select **Kubernetes services**.\n\n## Create a cluster\n\nFrom the Kubernetes services page, select **Create** > **Create a Kubernetes cluster**.\n\nYou can select any of the configuration options that suit your needs, then select **Create** when done.\n\n## Set Kubectl context\n\nThe remainder of the steps in this guide require you to set the Azure instance as the Kubectl context. You can find the connection details for a cluster instance by opening its details page and then the **Connect** button. The resulting code snippets shows the steps to paste and run into a terminal to change your local Kubernetes settings to use the new cluster.\n\n## Clone configuration repository\n\nKubernetes and n8n require a series of configuration files. You can clone these from [this repository](https://github.com/n8n-io/n8n-hosting). The following steps tell you which file configures what and what you need to change.\n\nClone the repository with the following command:\n\n```\ngit clone https://github.com/n8n-io/n8n-hosting.git\n```\n\nAnd change directory:\n\n```\ncd n8n-hosting/kubernetes\n```\n\n## Configure Postgres\n\nFor larger scale n8n deployments, Postgres provides a more robust database backend than SQLite.\n\n### Configure volume for persistent storage\n\nTo maintain data between pod restarts, the Postgres deployment needs a persistent volume. The default storage class is suitable for this purpose and is defined in the `postgres-claim0-persistentvolumeclaim.yaml` manifest.\n\nSpecialized storage classes\n\nIf you have specialised or higher requirements for storage classes, [read more on the options Azure offers in the documentation](https://learn.microsoft.com/en-us/azure/aks/concepts-storage#storage-classes).\n\n### Postgres environment variables\n\nPostgres needs some environment variables set to pass to the application running in the containers.\n\nThe example `postgres-secret.yaml` file contains placeholders you need to replace with your own values. Postgres will use these details when creating the database..\n\nThe `postgres-deployment.yaml` manifest then uses the values from this manifest file to send to the application pods.\n\n## Configure n8n\n\n### Create a volume for file storage\n\nWhile not essential for running n8n, using persistent volumes is required for:\n\n- Using nodes that interact with files, such as the binary data node.\n- If you want to persist [manual n8n encryption keys](../../../configuration/environment-variables/deployment/) between restarts. This saves a file containing the key into file storage during startup.\n\nThe `n8n-claim0-persistentvolumeclaim.yaml` manifest creates this, and the n8n Deployment mounts that claim in the `volumes` section of the `n8n-deployment.yaml` manifest.\n\n```\n…\nvolumes:\n - name: n8n-claim0\n persistentVolumeClaim:\n claimName: n8n-claim0\n…\n```\n\n### Pod resources\n\n[Kubernetes lets you](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) optionally specify the minimum resources application containers need and the limits they can run to. The example YAML files cloned above contain the following in the `resources` section of the `n8n-deployment.yaml` file:\n\n```\n…\nresources:\n requests:\n memory: \"250Mi\"\n limits:\n memory: \"500Mi\"\n…\n```\n\nThis defines a minimum of 250mb per container, a maximum of 500mb, and lets Kubernetes handle CPU. You can change these values to match your own needs. As a guide, here are the resources values for the n8n cloud offerings:\n\n- **Start**: 320mb RAM, 10 millicore CPU burstable\n- **Pro (10k executions)**: 640mb RAM, 20 millicore CPU burstable\n- **Pro (50k executions)**: 1280mb RAM, 80 millicore CPU burstable\n\n### Optional: Environment variables\n\nYou can configure n8n settings and behaviors using environment variables.\n\nCreate an `n8n-secret.yaml` file. Refer to [Environment variables](../../../configuration/environment-variables/) for n8n environment variables details.\n\n## Deployments\n\nThe two deployment manifests (`n8n-deployment.yaml` and `postgres-deployment.yaml`) define the n8n and Postgres applications to Kubernetes.\n\nThe manifests define the following:\n\n- Send the environment variables defined to each application pod\n- Define the container image to use\n- Set resource consumption limits with the `resources` object\n- The `volumes` defined earlier and `volumeMounts` to define the path in the container to mount volumes.\n- Scaling and restart policies. The example manifests define one instance of each pod. You should change this to meet your needs.\n\n## Services\n\nThe two service manifests (`postgres-service.yaml` and `n8n-service.yaml`) expose the services to the outside world using the Kubernetes load balancer using ports 5432 and 5678 respectively.\n\n## Send to Kubernetes cluster\n\nSend all the manifests to the cluster with the following command:\n\n```\nkubectl apply -f .\n```\n\nNamespace error\n\nYou may see an error message about not finding an \"n8n\" namespace as that resources isn't ready yet. You can run the same command again, or apply the namespace manifest first with the following command:\n\n```\nkubectl apply -f namespace.yaml\n```\n\n## Set up DNS\n\nn8n typically operates on a subdomain. Create a DNS record with your provider for the subdomain and point it to the IP address of the n8n service. Find the IP address of the n8n service from the **Services & ingresses** menu item of the cluster you want to use under the **External IP** column. You need to add the n8n port, \"5678\" to the URL.\n\nStatic IP addresses with AKS\n\n[Read this tutorial](https://learn.microsoft.com/en-us/azure/aks/static-ip) for more details on how to use a static IP address with AKS.\n\n## Delete resources\n\nRemove the resources created by the manifests with the following command:\n\n```\nkubectl delete -f .\n```\n\n## Next steps\n\n- Learn more about [configuring](../../../configuration/environment-variables/) and [scaling](../../../scaling/overview/) n8n.\n- Or explore using n8n: try the [Quickstarts](../../../../try-it-out/).\n",
16828
+ "excerpt": "# Hosting n8n on Azure This hosting guide shows you how to self-host n8n on Azure. It uses n8n with Postgres as a database backend using Kubernetes to manage the necessary resources and reverse proxy. ## Prerequisites You need [The Azure command line tool](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli) Self-hosting knowledge prerequisites Self-hosting n8n requires technical knowledge, including: - Setting up and configuring servers and containers - Managing application reso...",
16829
+ "sections": [
16830
+ {
16831
+ "title": "Hosting n8n on Azure",
16832
+ "level": 1,
16833
+ "content": "This hosting guide shows you how to self-host n8n on Azure. It uses n8n with Postgres as a database backend using Kubernetes to manage the necessary resources and reverse proxy."
16834
+ }
16835
+ ]
16836
+ },
16837
+ "metadata": {
16838
+ "keywords": [
16839
+ "azure",
16840
+ "hosting",
16841
+ "prerequisites",
16842
+ "options",
16843
+ "open",
16844
+ "kubernetes",
16845
+ "service",
16846
+ "create",
16847
+ "cluster",
16848
+ "kubectl",
16849
+ "context",
16850
+ "clone",
16851
+ "configuration",
16852
+ "repository",
16853
+ "configure",
16854
+ "postgres",
16855
+ "volume",
16856
+ "persistent",
16857
+ "storage",
16858
+ "environment",
16859
+ "variables",
16860
+ "file",
16861
+ "resources",
16862
+ "optional:",
16863
+ "deployments",
16864
+ "services",
16865
+ "send",
16866
+ "delete",
16867
+ "next",
16868
+ "steps"
16869
+ ],
16870
+ "useCases": [],
16871
+ "operations": [],
16872
+ "codeExamples": 7,
16873
+ "complexity": "beginner",
16874
+ "readingTime": "6 min",
16875
+ "contentLength": 7701,
16876
+ "relatedPages": []
16877
+ },
16878
+ "searchIndex": {
16879
+ "fullText": "azure # hosting n8n on azure\n\nthis hosting guide shows you how to self-host n8n on azure. it uses n8n with postgres as a database backend using kubernetes to manage the necessary resources and reverse proxy.\n\n## prerequisites\n\nyou need [the azure command line tool](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli)\n\nself-hosting knowledge prerequisites\n\nself-hosting n8n requires technical knowledge, including:\n\n- setting up and configuring servers and containers\n- managing application resources and scaling\n- securing servers and applications\n- configuring n8n\n\nn8n recommends self-hosting for expert users. mistakes can lead to data loss, security issues, and downtime. if you aren't experienced at managing servers, n8n recommends [n8n cloud](https://n8n.io/cloud/).\n\nstable and beta versions\n\nn8n releases a new minor version most weeks. the `stable` version is for production use. `beta` is the most recent release. the `beta` version may be unstable. to report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\ncurrent `stable`: 2.14.2 current `beta`: 2.15.0\n\n## hosting options\n\nazure offers several ways suitable for hosting n8n, including azure container instances (optimized for running containers), linux virtual machines, and azure kubernetes service (containers running with kubernetes).\n\nthis guide uses the azure kubernetes service (aks) as the hosting option. using kubernetes requires some additional complexity and configuration, but is the best method for scaling n8n as demand changes.\n\nthe steps in this guide use a mix of the azure ui and command line tool, but you can use either to accomplish most tasks.\n\n## open the azure kubernetes service\n\nfrom [the azure portal](https://portal.azure.com/) select **kubernetes services**.\n\n## create a cluster\n\nfrom the kubernetes services page, select **create** > **create a kubernetes cluster**.\n\nyou can select any of the configuration options that suit your needs, then select **create** when done.\n\n## set kubectl context\n\nthe remainder of the steps in this guide require you to set the azure instance as the kubectl context. you can find the connection details for a cluster instance by opening its details page and then the **connect** button. the resulting code snippets shows the steps to paste and run into a terminal to change your local kubernetes settings to use the new cluster.\n\n## clone configuration repository\n\nkubernetes and n8n require a series of configuration files. you can clone these from [this repository](https://github.com/n8n-io/n8n-hosting). the following steps tell you which file configures what and what you need to change.\n\nclone the repository with the following command:\n\n```\ngit clone https://github.com/n8n-io/n8n-hosting.git\n```\n\nand change directory:\n\n```\ncd n8n-hosting/kubernetes\n```\n\n## configure postgres\n\nfor larger scale n8n deployments, postgres provides a more robust database backend than sqlite.\n\n### configure volume for persistent storage\n\nto maintain data between pod restarts, the postgres deployment needs a persistent volume. the default storage class is suitable for this purpose and is defined in the `postgres-claim0-persistentvolumeclaim.yaml` manifest.\n\nspecialized storage classes\n\nif you have specialised or higher requirements for storage classes, [read more on the options azure offers in the documentation](https://learn.microsoft.com/en-us/azure/aks/concepts-storage#storage-classes).\n\n### postgres environment variables\n\npostgres needs some environment variables set to pass to the application running in the containers.\n\nthe example `postgres-secret.yaml` file contains placeholders you need to replace with your own values. postgres will use these details when creating the database..\n\nthe `postgres-deployment.yaml` manifest then uses the values from this manifest file to send to the application pods.\n\n## configure n8n\n\n### create a volume for file storage\n\nwhile not essential for running n8n, using persistent volumes is required for:\n\n- using nodes that interact with files, such as the binary data node.\n- if you want to persist [manual n8n encryption keys](../../../configuration/environment-variables/deployment/) between restarts. this saves a file containing the key into file storage during startup.\n\nthe `n8n-claim0-persistentvolumeclaim.yaml` manifest creates this, and the n8n deployment mounts that claim in the `volumes` section of the `n8n-deployment.yaml` manifest.\n\n```\n…\nvolumes:\n - name: n8n-claim0\n persistentvolumeclaim:\n claimname: n8n-claim0\n…\n```\n\n### pod resources\n\n[kubernetes lets you](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) optionally specify the minimum resources application containers need and the limits they can run to. the example yaml files cloned above contain the following in the `resources` section of the `n8n-deployment.yaml` file:\n\n```\n…\nresources:\n requests:\n memory: \"250mi\"\n limits:\n memory: \"500mi\"\n…\n```\n\nthis defines a minimum of 250mb per container, a maximum of 500mb, and lets kubernetes handle cpu. you can change these values to match your own needs. as a guide, here are the resources values for the n8n cloud offerings:\n\n- **start**: 320mb ram, 10 millicore cpu burstable\n- **pro (10k executions)**: 640mb ram, 20 millicore cpu burstable\n- **pro (50k executions)**: 1280mb ram, 80 millicore cpu burstable\n\n### optional: environment variables\n\nyou can configure n8n settings and behaviors using environment variables.\n\ncreate an `n8n-secret.yaml` file. refer to [environment variables](../../../configuration/environment-variables/) for n8n environment variables details.\n\n## deployments\n\nthe two deployment manifests (`n8n-deployment.yaml` and `postgres-deployment.yaml`) define the n8n and postgres applications to kubernetes.\n\nthe manifests define the following:\n\n- send the environment variables defined to each application pod\n- define the container image to use\n- set resource consumption limits with the `resources` object\n- the `volumes` defined earlier and `volumemounts` to define the path in the container to mount volumes.\n- scaling and restart policies. the example manifests define one instance of each pod. you should change this to meet your needs.\n\n## services\n\nthe two service manifests (`postgres-service.yaml` and `n8n-service.yaml`) expose the services to the outside world using the kubernetes load balancer using ports 5432 and 5678 respectively.\n\n## send to kubernetes cluster\n\nsend all the manifests to the cluster with the following command:\n\n```\nkubectl apply -f .\n```\n\nnamespace error\n\nyou may see an error message about not finding an \"n8n\" namespace as that resources isn't ready yet. you can run the same command again, or apply the namespace manifest first with the following command:\n\n```\nkubectl apply -f namespace.yaml\n```\n\n## set up dns\n\nn8n typically operates on a subdomain. create a dns record with your provider for the subdomain and point it to the ip address of the n8n service. find the ip address of the n8n service from the **services & ingresses** menu item of the cluster you want to use under the **external ip** column. you need to add the n8n port, \"5678\" to the url.\n\nstatic ip addresses with aks\n\n[read this tutorial](https://learn.microsoft.com/en-us/azure/aks/static-ip) for more details on how to use a static ip address with aks.\n\n## delete resources\n\nremove the resources created by the manifests with the following command:\n\n```\nkubectl delete -f .\n```\n\n## next steps\n\n- learn more about [configuring](../../../configuration/environment-variables/) and [scaling](../../../scaling/overview/) n8n.\n- or explore using n8n: try the [quickstarts](../../../../try-it-out/).\n hosting n8n on azure",
16880
+ "importantTerms": [
16881
+ "azure",
16882
+ "kubernetes",
16883
+ "postgres",
16884
+ "yaml",
16885
+ "hosting",
16886
+ "this",
16887
+ "with",
16888
+ "resources",
16889
+ "environment",
16890
+ "variables",
16891
+ "https",
16892
+ "deployment",
16893
+ "using",
16894
+ "service",
16895
+ "configuration",
16896
+ "file",
16897
+ "storage",
16898
+ "command",
16899
+ "create",
16900
+ "cluster",
16901
+ "following",
16902
+ "containers",
16903
+ "your",
16904
+ "manifest",
16905
+ "manifests",
16906
+ "guide",
16907
+ "need",
16908
+ "application",
16909
+ "scaling",
16910
+ "steps",
16911
+ "from",
16912
+ "services",
16913
+ "needs",
16914
+ "kubectl",
16915
+ "details",
16916
+ "change",
16917
+ "volumes",
16918
+ "define",
16919
+ "self",
16920
+ "learn",
16921
+ "beta",
16922
+ "container",
16923
+ "running",
16924
+ "select",
16925
+ "that",
16926
+ "clone",
16927
+ "configure",
16928
+ "more",
16929
+ "values",
16930
+ "send"
16931
+ ]
16932
+ }
16933
+ },
16934
+ {
16935
+ "id": "page-0202",
16936
+ "title": "Digital Ocean",
16937
+ "url": "https://docs.n8n.io/hosting/installation/server-setups/digital-ocean/index.md",
16938
+ "urlPath": "hosting/installation/server-setups/digital-ocean/index.md",
16939
+ "category": "hosting",
16940
+ "subcategory": null,
16941
+ "nodeName": null,
16942
+ "nodeType": null,
16825
16943
  "content": {
16826
16944
  "markdown": "# Hosting n8n on DigitalOcean\n\nThis hosting guide shows you how to self-host n8n on a DigitalOcean droplet. It uses:\n\n- [Caddy](https://caddyserver.com) (a reverse proxy) to allow access to the Droplet from the internet. Caddy will also automatically create and manage SSL / TLS certificates for your n8n instance.\n- [Docker Compose](https://docs.docker.com/compose/) to create and define the application components and how they work together.\n\nSelf-hosting knowledge prerequisites\n\nSelf-hosting n8n requires technical knowledge, including:\n\n- Setting up and configuring servers and containers\n- Managing application resources and scaling\n- Securing servers and applications\n- Configuring n8n\n\nn8n recommends self-hosting for expert users. Mistakes can lead to data loss, security issues, and downtime. If you aren't experienced at managing servers, n8n recommends [n8n Cloud](https://n8n.io/cloud/).\n\nStable and Beta versions\n\nn8n releases a new minor version most weeks. The `stable` version is for production use. `beta` is the most recent release. The `beta` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\nCurrent `stable`: 2.14.2 Current `beta`: 2.15.0\n\n## Create a Droplet\n\n1. [Log in](https://cloud.digitalocean.com/login) to DigitalOcean.\n1. Select the project to host the Droplet, or [create a new project](https://docs.digitalocean.com/products/projects/how-to/create/).\n1. In your project, select **Droplets** from the **Manage** menu.\n1. [Create a new Droplet](https://docs.digitalocean.com/products/droplets/how-to/create/) using the [Docker image](https://marketplace.digitalocean.com/apps/docker) available on the **Marketplace** tab.\n\nDroplet resources\n\nWhen creating the Droplet, DigitalOcean asks you to choose a plan. For most usage levels, a basic shared CPU plan is enough.\n\nSSH key or Password\n\nDigitalOcean lets you choose between SSH key and password-based authentication. SSH keys are considered more secure.\n\n## Log in to your Droplet and create new user\n\nThe rest of this guide requires you to log in to the Droplet using a terminal with SSH. Refer to [How to Connect to Droplets with SSH](https://docs.digitalocean.com/products/droplets/how-to/connect-with-ssh/) for more information.\n\nYou should create a new user, to avoid working as the root user:\n\n1. Log in as root.\n\n1. Create a new user:\n\n ```\n adduser <username>\n ```\n\n1. Follow the prompts in the CLI to finish creating the user.\n\n1. Grant the new user administrative privileges:\n\n ```\n usermod -aG sudo <username>\n ```\n\n You can now run commands with superuser privileges by using `sudo` before the command.\n\n1. Follow the steps to set up SSH for the new user: [Add Public Key Authentication](https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-14-04#step-four-add-public-key-authentication-recommended).\n\n1. Log out of the droplet.\n\n1. Log in using SSH as the new user.\n\n## Clone configuration repository\n\nDocker Compose, n8n, and Caddy require a series of folders and configuration files. You can clone these from [this repository](https://github.com/n8n-io/n8n-docker-caddy) into the home folder of the logged-in user on your Droplet. The following steps will tell you which file to change and what changes to make.\n\nClone the repository with the following command:\n\n```\ngit clone https://github.com/n8n-io/n8n-docker-caddy.git\n```\n\nAnd change directory to the root of the repository you cloned:\n\n```\ncd n8n-docker-caddy\n```\n\n## Default folders and files\n\nThe host operating system (the DigitalOcean Droplet) copies the two folders you created to Docker containers to make them available to Docker. The two folders are:\n\n- `caddy_config`: Holds the Caddy configuration files.\n- `local_files`: A folder for files you upload or add using n8n.\n\n### Create Docker volumes\n\nTo persist the Caddy cache between restarts and speed up start times, create [a Docker volume](https://docs.docker.com/storage/volumes/) that Docker reuses between restarts:\n\n```\nsudo docker volume create caddy_data\n```\n\nCreate a Docker volume for the n8n data:\n\n```\nsudo docker volume create n8n_data\n```\n\n## Set up DNS\n\nn8n typically operates on a subdomain. Create a DNS record with your provider for the subdomain and point it to the IP address of the Droplet. The exact steps for this depend on your DNS provider, but typically you need to create a new \"A\" record for the n8n subdomain. DigitalOcean provide [An Introduction to DNS Terminology, Components, and Concepts](https://www.digitalocean.com/community/tutorials/an-introduction-to-dns-terminology-components-and-concepts).\n\n## Open ports\n\nn8n runs as a web application, so the Droplet needs to allow incoming access to traffic on port 80 for non-secure traffic, and port 443 for secure traffic.\n\nOpen the following ports in the Droplet's firewall by running the following two commands:\n\n```\nsudo ufw allow 80\nsudo ufw allow 443\n```\n\n## Configure n8n\n\nn8n needs some environment variables set to pass to the application running in the Docker container. The example `.env` file contains placeholders you need to replace with values of your own.\n\nOpen the file with the following command:\n\n```\nnano .env\n```\n\nThe file contains inline comments to help you know what to change.\n\nRefer to [Environment variables](../../../configuration/environment-variables/) for n8n environment variables details.\n\n## The Docker Compose file\n\nThe Docker Compose file (`docker-compose.yml`) defines the services the application needs, in this case Caddy and n8n.\n\n- The Caddy service definition defines the ports it uses and the local volumes to copy to the containers.\n- The n8n service definition defines the ports it uses, the environment variables n8n needs to run (some defined in the `.env` file), and the volumes it needs to copy to the containers.\n\nThe Docker Compose file uses the environment variables set in the `.env` file, so you shouldn't need to change it's content, but to take a look, run the following command:\n\n```\nnano docker-compose.yml\n```\n\n## Configure Caddy\n\nCaddy needs to know which domains it should serve, and which port to expose to the outside world. Edit the `Caddyfile` file in the `caddy_config` folder.\n\n```\nnano caddy_config/Caddyfile\n```\n\nChange the placeholder domain to yours. If you followed the steps to name the subdomain n8n, your full domain is similar to `n8n.example.com`. The `n8n` in the `reverse_proxy` setting tells Caddy to use the service definition defined in the `docker-compose.yml` file:\n\n```\nn8n.<domain>.<suffix> {\n reverse_proxy n8n:5678 {\n flush_interval -1\n }\n}\n```\n\nIf you were to use `automate.example.com`, your `Caddyfile` may look something like:\n\n```\nautomate.example.com {\n reverse_proxy n8n:5678 {\n flush_interval -1\n }\n}\n```\n\n## Start Docker Compose\n\nStart n8n and Caddy with the following command:\n\n```\nsudo docker compose up -d\n```\n\nThis may take a few minutes.\n\n## Test your setup\n\nIn your browser, open the URL formed of the subdomain and domain name defined earlier. Enter the user name and password defined earlier, and you should be able to access n8n.\n\n## Stop n8n and Caddy\n\nYou can stop n8n and Caddy with the following command:\n\n```\nsudo docker compose stop\n```\n\n## Updating\n\nIf you run n8n using a Docker Compose file, follow these steps to update n8n:\n\n```\n# Navigate to the directory containing your docker compose file\ncd </path/to/your/compose/file/directory>\n\n# Pull latest version\ndocker compose pull\n\n# Stop and remove older version\ndocker compose down\n\n# Start the container\ndocker compose up -d\n```\n\n## Next steps\n\n- Learn more about [configuring](../../../configuration/environment-variables/) and [scaling](../../../scaling/overview/) n8n.\n- Or explore using n8n: try the [Quickstarts](../../../../try-it-out/).\n",
16827
16945
  "excerpt": "# Hosting n8n on DigitalOcean This hosting guide shows you how to self-host n8n on a DigitalOcean droplet. It uses: - [Caddy](https://caddyserver.com) (a reverse proxy) to allow access to the Droplet from the internet. Caddy will also automatically create and manage SSL / TLS certificates for your n8n instance. - [Docker Compose](https://docs.docker.com/compose/) to create and define the application components and how they work together. Self-hosting knowledge prerequisites Self-hosting n8n...",
@@ -16855,34 +16973,42 @@
16855
16973
  },
16856
16974
  "metadata": {
16857
16975
  "keywords": [
16858
- "azure",
16976
+ "digital",
16977
+ "ocean",
16859
16978
  "hosting",
16860
- "prerequisites",
16861
- "options",
16862
- "open",
16863
- "kubernetes",
16864
- "service",
16979
+ "digitalocean",
16865
16980
  "create",
16866
- "cluster",
16867
- "kubectl",
16868
- "context",
16981
+ "droplet",
16982
+ "your",
16983
+ "user",
16869
16984
  "clone",
16870
16985
  "configuration",
16871
16986
  "repository",
16987
+ "default",
16988
+ "folders",
16989
+ "files",
16990
+ "docker",
16991
+ "volumes",
16992
+ "open",
16993
+ "ports",
16872
16994
  "configure",
16873
- "postgres",
16874
- "volume",
16875
- "persistent",
16876
- "storage",
16877
- "environment",
16878
- "variables",
16995
+ "compose",
16879
16996
  "file",
16880
- "resources",
16881
- "optional:",
16882
- "deployments",
16883
- "services",
16884
- "send",
16885
- "delete",
16997
+ "caddy",
16998
+ "start",
16999
+ "test",
17000
+ "setup",
17001
+ "stop",
17002
+ "updating",
17003
+ "navigate",
17004
+ "directory",
17005
+ "containing",
17006
+ "pull",
17007
+ "latest",
17008
+ "version",
17009
+ "remove",
17010
+ "older",
17011
+ "container",
16886
17012
  "next",
16887
17013
  "steps"
16888
17014
  ],
@@ -16895,7 +17021,7 @@
16895
17021
  "relatedPages": []
16896
17022
  },
16897
17023
  "searchIndex": {
16898
- "fullText": "azure # hosting n8n on digitalocean\n\nthis hosting guide shows you how to self-host n8n on a digitalocean droplet. it uses:\n\n- [caddy](https://caddyserver.com) (a reverse proxy) to allow access to the droplet from the internet. caddy will also automatically create and manage ssl / tls certificates for your n8n instance.\n- [docker compose](https://docs.docker.com/compose/) to create and define the application components and how they work together.\n\nself-hosting knowledge prerequisites\n\nself-hosting n8n requires technical knowledge, including:\n\n- setting up and configuring servers and containers\n- managing application resources and scaling\n- securing servers and applications\n- configuring n8n\n\nn8n recommends self-hosting for expert users. mistakes can lead to data loss, security issues, and downtime. if you aren't experienced at managing servers, n8n recommends [n8n cloud](https://n8n.io/cloud/).\n\nstable and beta versions\n\nn8n releases a new minor version most weeks. the `stable` version is for production use. `beta` is the most recent release. the `beta` version may be unstable. to report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\ncurrent `stable`: 2.14.2 current `beta`: 2.15.0\n\n## create a droplet\n\n1. [log in](https://cloud.digitalocean.com/login) to digitalocean.\n1. select the project to host the droplet, or [create a new project](https://docs.digitalocean.com/products/projects/how-to/create/).\n1. in your project, select **droplets** from the **manage** menu.\n1. [create a new droplet](https://docs.digitalocean.com/products/droplets/how-to/create/) using the [docker image](https://marketplace.digitalocean.com/apps/docker) available on the **marketplace** tab.\n\ndroplet resources\n\nwhen creating the droplet, digitalocean asks you to choose a plan. for most usage levels, a basic shared cpu plan is enough.\n\nssh key or password\n\ndigitalocean lets you choose between ssh key and password-based authentication. ssh keys are considered more secure.\n\n## log in to your droplet and create new user\n\nthe rest of this guide requires you to log in to the droplet using a terminal with ssh. refer to [how to connect to droplets with ssh](https://docs.digitalocean.com/products/droplets/how-to/connect-with-ssh/) for more information.\n\nyou should create a new user, to avoid working as the root user:\n\n1. log in as root.\n\n1. create a new user:\n\n ```\n adduser <username>\n ```\n\n1. follow the prompts in the cli to finish creating the user.\n\n1. grant the new user administrative privileges:\n\n ```\n usermod -ag sudo <username>\n ```\n\n you can now run commands with superuser privileges by using `sudo` before the command.\n\n1. follow the steps to set up ssh for the new user: [add public key authentication](https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-14-04#step-four-add-public-key-authentication-recommended).\n\n1. log out of the droplet.\n\n1. log in using ssh as the new user.\n\n## clone configuration repository\n\ndocker compose, n8n, and caddy require a series of folders and configuration files. you can clone these from [this repository](https://github.com/n8n-io/n8n-docker-caddy) into the home folder of the logged-in user on your droplet. the following steps will tell you which file to change and what changes to make.\n\nclone the repository with the following command:\n\n```\ngit clone https://github.com/n8n-io/n8n-docker-caddy.git\n```\n\nand change directory to the root of the repository you cloned:\n\n```\ncd n8n-docker-caddy\n```\n\n## default folders and files\n\nthe host operating system (the digitalocean droplet) copies the two folders you created to docker containers to make them available to docker. the two folders are:\n\n- `caddy_config`: holds the caddy configuration files.\n- `local_files`: a folder for files you upload or add using n8n.\n\n### create docker volumes\n\nto persist the caddy cache between restarts and speed up start times, create [a docker volume](https://docs.docker.com/storage/volumes/) that docker reuses between restarts:\n\n```\nsudo docker volume create caddy_data\n```\n\ncreate a docker volume for the n8n data:\n\n```\nsudo docker volume create n8n_data\n```\n\n## set up dns\n\nn8n typically operates on a subdomain. create a dns record with your provider for the subdomain and point it to the ip address of the droplet. the exact steps for this depend on your dns provider, but typically you need to create a new \"a\" record for the n8n subdomain. digitalocean provide [an introduction to dns terminology, components, and concepts](https://www.digitalocean.com/community/tutorials/an-introduction-to-dns-terminology-components-and-concepts).\n\n## open ports\n\nn8n runs as a web application, so the droplet needs to allow incoming access to traffic on port 80 for non-secure traffic, and port 443 for secure traffic.\n\nopen the following ports in the droplet's firewall by running the following two commands:\n\n```\nsudo ufw allow 80\nsudo ufw allow 443\n```\n\n## configure n8n\n\nn8n needs some environment variables set to pass to the application running in the docker container. the example `.env` file contains placeholders you need to replace with values of your own.\n\nopen the file with the following command:\n\n```\nnano .env\n```\n\nthe file contains inline comments to help you know what to change.\n\nrefer to [environment variables](../../../configuration/environment-variables/) for n8n environment variables details.\n\n## the docker compose file\n\nthe docker compose file (`docker-compose.yml`) defines the services the application needs, in this case caddy and n8n.\n\n- the caddy service definition defines the ports it uses and the local volumes to copy to the containers.\n- the n8n service definition defines the ports it uses, the environment variables n8n needs to run (some defined in the `.env` file), and the volumes it needs to copy to the containers.\n\nthe docker compose file uses the environment variables set in the `.env` file, so you shouldn't need to change it's content, but to take a look, run the following command:\n\n```\nnano docker-compose.yml\n```\n\n## configure caddy\n\ncaddy needs to know which domains it should serve, and which port to expose to the outside world. edit the `caddyfile` file in the `caddy_config` folder.\n\n```\nnano caddy_config/caddyfile\n```\n\nchange the placeholder domain to yours. if you followed the steps to name the subdomain n8n, your full domain is similar to `n8n.example.com`. the `n8n` in the `reverse_proxy` setting tells caddy to use the service definition defined in the `docker-compose.yml` file:\n\n```\nn8n.<domain>.<suffix> {\n reverse_proxy n8n:5678 {\n flush_interval -1\n }\n}\n```\n\nif you were to use `automate.example.com`, your `caddyfile` may look something like:\n\n```\nautomate.example.com {\n reverse_proxy n8n:5678 {\n flush_interval -1\n }\n}\n```\n\n## start docker compose\n\nstart n8n and caddy with the following command:\n\n```\nsudo docker compose up -d\n```\n\nthis may take a few minutes.\n\n## test your setup\n\nin your browser, open the url formed of the subdomain and domain name defined earlier. enter the user name and password defined earlier, and you should be able to access n8n.\n\n## stop n8n and caddy\n\nyou can stop n8n and caddy with the following command:\n\n```\nsudo docker compose stop\n```\n\n## updating\n\nif you run n8n using a docker compose file, follow these steps to update n8n:\n\n```\n# navigate to the directory containing your docker compose file\ncd </path/to/your/compose/file/directory>\n\n# pull latest version\ndocker compose pull\n\n# stop and remove older version\ndocker compose down\n\n# start the container\ndocker compose up -d\n```\n\n## next steps\n\n- learn more about [configuring](../../../configuration/environment-variables/) and [scaling](../../../scaling/overview/) n8n.\n- or explore using n8n: try the [quickstarts](../../../../try-it-out/).\n hosting n8n on digitalocean navigate to the directory containing your docker compose file pull latest version stop and remove older version start the container",
17024
+ "fullText": "digital ocean # hosting n8n on digitalocean\n\nthis hosting guide shows you how to self-host n8n on a digitalocean droplet. it uses:\n\n- [caddy](https://caddyserver.com) (a reverse proxy) to allow access to the droplet from the internet. caddy will also automatically create and manage ssl / tls certificates for your n8n instance.\n- [docker compose](https://docs.docker.com/compose/) to create and define the application components and how they work together.\n\nself-hosting knowledge prerequisites\n\nself-hosting n8n requires technical knowledge, including:\n\n- setting up and configuring servers and containers\n- managing application resources and scaling\n- securing servers and applications\n- configuring n8n\n\nn8n recommends self-hosting for expert users. mistakes can lead to data loss, security issues, and downtime. if you aren't experienced at managing servers, n8n recommends [n8n cloud](https://n8n.io/cloud/).\n\nstable and beta versions\n\nn8n releases a new minor version most weeks. the `stable` version is for production use. `beta` is the most recent release. the `beta` version may be unstable. to report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\ncurrent `stable`: 2.14.2 current `beta`: 2.15.0\n\n## create a droplet\n\n1. [log in](https://cloud.digitalocean.com/login) to digitalocean.\n1. select the project to host the droplet, or [create a new project](https://docs.digitalocean.com/products/projects/how-to/create/).\n1. in your project, select **droplets** from the **manage** menu.\n1. [create a new droplet](https://docs.digitalocean.com/products/droplets/how-to/create/) using the [docker image](https://marketplace.digitalocean.com/apps/docker) available on the **marketplace** tab.\n\ndroplet resources\n\nwhen creating the droplet, digitalocean asks you to choose a plan. for most usage levels, a basic shared cpu plan is enough.\n\nssh key or password\n\ndigitalocean lets you choose between ssh key and password-based authentication. ssh keys are considered more secure.\n\n## log in to your droplet and create new user\n\nthe rest of this guide requires you to log in to the droplet using a terminal with ssh. refer to [how to connect to droplets with ssh](https://docs.digitalocean.com/products/droplets/how-to/connect-with-ssh/) for more information.\n\nyou should create a new user, to avoid working as the root user:\n\n1. log in as root.\n\n1. create a new user:\n\n ```\n adduser <username>\n ```\n\n1. follow the prompts in the cli to finish creating the user.\n\n1. grant the new user administrative privileges:\n\n ```\n usermod -ag sudo <username>\n ```\n\n you can now run commands with superuser privileges by using `sudo` before the command.\n\n1. follow the steps to set up ssh for the new user: [add public key authentication](https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-14-04#step-four-add-public-key-authentication-recommended).\n\n1. log out of the droplet.\n\n1. log in using ssh as the new user.\n\n## clone configuration repository\n\ndocker compose, n8n, and caddy require a series of folders and configuration files. you can clone these from [this repository](https://github.com/n8n-io/n8n-docker-caddy) into the home folder of the logged-in user on your droplet. the following steps will tell you which file to change and what changes to make.\n\nclone the repository with the following command:\n\n```\ngit clone https://github.com/n8n-io/n8n-docker-caddy.git\n```\n\nand change directory to the root of the repository you cloned:\n\n```\ncd n8n-docker-caddy\n```\n\n## default folders and files\n\nthe host operating system (the digitalocean droplet) copies the two folders you created to docker containers to make them available to docker. the two folders are:\n\n- `caddy_config`: holds the caddy configuration files.\n- `local_files`: a folder for files you upload or add using n8n.\n\n### create docker volumes\n\nto persist the caddy cache between restarts and speed up start times, create [a docker volume](https://docs.docker.com/storage/volumes/) that docker reuses between restarts:\n\n```\nsudo docker volume create caddy_data\n```\n\ncreate a docker volume for the n8n data:\n\n```\nsudo docker volume create n8n_data\n```\n\n## set up dns\n\nn8n typically operates on a subdomain. create a dns record with your provider for the subdomain and point it to the ip address of the droplet. the exact steps for this depend on your dns provider, but typically you need to create a new \"a\" record for the n8n subdomain. digitalocean provide [an introduction to dns terminology, components, and concepts](https://www.digitalocean.com/community/tutorials/an-introduction-to-dns-terminology-components-and-concepts).\n\n## open ports\n\nn8n runs as a web application, so the droplet needs to allow incoming access to traffic on port 80 for non-secure traffic, and port 443 for secure traffic.\n\nopen the following ports in the droplet's firewall by running the following two commands:\n\n```\nsudo ufw allow 80\nsudo ufw allow 443\n```\n\n## configure n8n\n\nn8n needs some environment variables set to pass to the application running in the docker container. the example `.env` file contains placeholders you need to replace with values of your own.\n\nopen the file with the following command:\n\n```\nnano .env\n```\n\nthe file contains inline comments to help you know what to change.\n\nrefer to [environment variables](../../../configuration/environment-variables/) for n8n environment variables details.\n\n## the docker compose file\n\nthe docker compose file (`docker-compose.yml`) defines the services the application needs, in this case caddy and n8n.\n\n- the caddy service definition defines the ports it uses and the local volumes to copy to the containers.\n- the n8n service definition defines the ports it uses, the environment variables n8n needs to run (some defined in the `.env` file), and the volumes it needs to copy to the containers.\n\nthe docker compose file uses the environment variables set in the `.env` file, so you shouldn't need to change it's content, but to take a look, run the following command:\n\n```\nnano docker-compose.yml\n```\n\n## configure caddy\n\ncaddy needs to know which domains it should serve, and which port to expose to the outside world. edit the `caddyfile` file in the `caddy_config` folder.\n\n```\nnano caddy_config/caddyfile\n```\n\nchange the placeholder domain to yours. if you followed the steps to name the subdomain n8n, your full domain is similar to `n8n.example.com`. the `n8n` in the `reverse_proxy` setting tells caddy to use the service definition defined in the `docker-compose.yml` file:\n\n```\nn8n.<domain>.<suffix> {\n reverse_proxy n8n:5678 {\n flush_interval -1\n }\n}\n```\n\nif you were to use `automate.example.com`, your `caddyfile` may look something like:\n\n```\nautomate.example.com {\n reverse_proxy n8n:5678 {\n flush_interval -1\n }\n}\n```\n\n## start docker compose\n\nstart n8n and caddy with the following command:\n\n```\nsudo docker compose up -d\n```\n\nthis may take a few minutes.\n\n## test your setup\n\nin your browser, open the url formed of the subdomain and domain name defined earlier. enter the user name and password defined earlier, and you should be able to access n8n.\n\n## stop n8n and caddy\n\nyou can stop n8n and caddy with the following command:\n\n```\nsudo docker compose stop\n```\n\n## updating\n\nif you run n8n using a docker compose file, follow these steps to update n8n:\n\n```\n# navigate to the directory containing your docker compose file\ncd </path/to/your/compose/file/directory>\n\n# pull latest version\ndocker compose pull\n\n# stop and remove older version\ndocker compose down\n\n# start the container\ndocker compose up -d\n```\n\n## next steps\n\n- learn more about [configuring](../../../configuration/environment-variables/) and [scaling](../../../scaling/overview/) n8n.\n- or explore using n8n: try the [quickstarts](../../../../try-it-out/).\n hosting n8n on digitalocean navigate to the directory containing your docker compose file pull latest version stop and remove older version start the container",
16899
17025
  "importantTerms": [
16900
17026
  "docker",
16901
17027
  "compose",
@@ -38445,6 +38571,102 @@
38445
38571
  },
38446
38572
  {
38447
38573
  "id": "page-0503",
38574
+ "title": "Event operations",
38575
+ "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar/event-operations/index.md",
38576
+ "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar/event-operations/index.md",
38577
+ "category": "integrations",
38578
+ "subcategory": "app-nodes",
38579
+ "nodeName": "googlecalendar",
38580
+ "nodeType": "n8n-nodes-base.googlecalendar",
38581
+ "content": {
38582
+ "markdown": "# Google Calendar Event operations\n\nUse these operations to create, delete, get, and update events in Google Calendar. Refer to [Google Calendar](../) for more information on the Google Calendar node itself.\n\n## Create\n\nUse this operation to add an event to a Google Calendar.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Google Calendar credentials](../../../credentials/google/).\n- **Resource**: Select **Event**.\n- **Operation**: Select **Create**.\n- **Calendar**: Choose a calendar you want to add an event to. Select **From list** to choose the title from the dropdown list or **By ID** to enter a calendar ID.\n- **Start Time**: The start time for the event. By default, uses an expression evaluating to the current time (`{{ $now }}`).\n- **End Time**: The end time for the event. By default, this uses an expression evaluating to an hour from now (`{{ $now.plus(1, 'hour') }}`).\n- **Use Default Reminders**: Whether to enable default reminders for the event according to the calendar configuration.\n\n### Options\n\n- **All Day**: Whether the event is all day or not.\n\n- **Attendees**: Attendees to invite to the event.\n\n- **Color Name or ID**: The color of the event. Choose from the list or specify the ID using an expression.\n\n- **Conference Data**: Creates a conference link (Hangouts, Meet, etc.) and attaches it to the event.\n\n- **Description**: A description for the event.\n\n- **Guests Can Invite Others**: Whether attendees other than the organizer can invite others to the event.\n\n- **Guests Can Modify**: Whether attendees other than the organizer can modify the event.\n\n- **Guests Can See Other Guests**: Whether attendees other than the organizer can see who the event's attendees are.\n\n- **ID**: Opaque identifier of the event.\n\n- **Location**: Geographic location of the event as free-form text.\n\n- **Max Attendees**: The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only returns the participant.\n\n- **Repeat Frequency**: The repetition interval for recurring events.\n\n- **Repeat How Many Times?**: The number of instances to create for recurring events.\n\n- **Repeat Until**: The date at which recurring events should stop.\n\n- **RRULE**: Recurrence rule. When set, ignores the Repeat Frequency, Repeat How Many Times, and Repeat Until parameters.\n\n- **Send Updates**: Whether to send notifications about the creation of the new event.\n\n- **Show Me As**: Whether the event blocks time on the calendar.\n\n- **Summary**: The title of the event.\n\nRefer to the [Events: insert | Google Calendar](https://developers.google.com/calendar/api/v3/reference/events/insert) API documentation for more information.\n\n## Delete\n\nUse this operation to delete an event from a Google Calendar.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Google Calendar credentials](../../../credentials/google/).\n- **Resource**: Select **Event**.\n- **Operation**: Select **Delete**.\n- **Calendar**: Choose a calendar you want to delete an event from. Select **From list** to choose the title from the dropdown list or **By ID** to enter a calendar ID.\n- **Event ID**: The ID of the event to delete.\n\n### Options\n\n- **Send Updates**: Whether to send notifications about the deletion of the event.\n\nRefer to the [Events: delete | Google Calendar](https://developers.google.com/calendar/api/v3/reference/events/delete) API documentation for more information.\n\n## Get\n\nUse this operation to retrieve an event from a Google Calendar.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Google Calendar credentials](../../../credentials/google/).\n- **Resource**: Select **Event**.\n- **Operation**: Select **Get**.\n- **Calendar**: Choose a calendar you want to get an event from. Select **From list** to choose the title from the dropdown list or **By ID** to enter a calendar ID.\n- **Event ID**: The ID of the event to get.\n\n### Options\n\n- **Max Attendees**: The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only returns the participant.\n- **Return Next Instance of Recurrent Event**: Whether to return the next instance of a recurring event instead of the event itself.\n- **Timezone**: The timezone used in the response. By default, uses the n8n timezone.\n\nRefer to the [Events: get | Google Calendar](https://developers.google.com/calendar/api/v3/reference/events/get) API documentation for more information.\n\n## Get Many\n\nUse this operation to retrieve more than one event from a Google Calendar.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Google Calendar credentials](../../../credentials/google/).\n- **Resource**: Select **Event**.\n- **Operation**: Select **Get Many**.\n- **Calendar**: Choose a calendar you want to get an event from. Select **From list** to choose the title from the dropdown list or **By ID** to enter a calendar ID.\n- **Return All**: Whether to return all results or only up to a given limit.\n- **Limit**: (When \"Return All\" isn't selected) The maximum number of results to return.\n- **After**: Retrieve events that occur after this time. At least part of the event must be after this time. By default, this uses an expression evaluating to the current time (`{{ $now }}`). Switch the field to \"fixed\" to select a date from a date widget.\n- **Before**: Retrieve events that occur before this time. At least part of the event must be before this time. By default, this uses an expression evaluating to the current time plus a week (`{{ $now.plus({ week: 1 }) }}`). Switch the field to \"fixed\" to select a date from a date widget.\n\n### Options\n\n- **Fields**: Specify the fields to return. By default, returns a set of commonly used fields predefined by Google. Use \"\\*\" to return all fields. You can find out more in [Google Calendar's documentation on working with partial resources](https://developers.google.com/calendar/api/guides/performance#partial).\n\n- **iCalUID**: Specifies an event ID (in the iCalendar format) to include in the response.\n\n- **Max Attendees**: The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only returns the participant.\n\n- **Order By**: The order to use for the events in the response.\n\n- **Query**: Free text search terms to find events that match. This searches all fields except for extended properties.\n\n- **Recurring Event Handling**: What to do for recurring events:\n\n - **All Occurrences**: Return all instances of the recurring event for the specified time range.\n - **First Occurrence**: Return the first event of a recurring event within the specified time range.\n - **Next Occurrence**: Return the next instance of a recurring event within the specified time range.\n\n- **Show Deleted**: Whether to include deleted events (with status equal to \"cancelled\") in the results.\n\n- **Show Hidden Invitations**: Whether to include hidden invitations in the results.\n\n- **Timezone**: The timezone used in the response. By default, uses the n8n timezone.\n\n- **Updated Min**: The lower bounds for an event's last modification time (as an [RFC 3339 timestamp](https://datatracker.ietf.org/doc/html/rfc3339))\n\nRefer to the [Events: list | Google Calendar](https://developers.google.com/calendar/api/v3/reference/events/list) API documentation for more information.\n\n## Update\n\nUse this operation to update an event in a Google Calendar.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Google Calendar credentials](../../../credentials/google/).\n\n- **Resource**: Select **Event**.\n\n- **Operation**: Select **Update**.\n\n- **Calendar**: Choose a calendar you want to add an event to. Select **From list** to choose the title from the dropdown list or **By ID** to enter a calendar ID.\n\n- **Event ID**: The ID of the event to update.\n\n- **Modify**: For recurring events, choose whether to update the recurring event or a specific instance of the recurring event.\n\n- **Use Default Reminders**: Whether to enable default reminders for the event according to the calendar configuration.\n\n- **Update Fields**: The fields of the event to update:\n\n - **All Day**: Whether the event is all day or not.\n - **Attendees**: Attendees to invite to the event. You can choose to either add attendees or replace the existing attendee list.\n - **Color Name or ID**: The color of the event. Choose from the list or specify the ID using an expression.\n - **Description**: A description for the event.\n - **End**: The end time of the event.\n - **Guests Can Invite Others**: Whether attendees other than the organizer can invite others to the event.\n - **Guests Can Modify**: Whether attendees other than the organizer can make changes to the event.\n - **Guests Can See Other Guests**: Whether attendees other than the organizer can see who the event's attendees are.\n - **ID**: Opaque identifier of the event.\n - **Location**: Geographic location of the event as free-form text.\n - **Max Attendees**: The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only returns the participant.\n - **Repeat Frequency**: The repetition interval for recurring events.\n - **Repeat How Many Times?**: The number of instances to create for recurring events.\n - **Repeat Until**: The date at which recurring events should stop.\n - **RRULE**: Recurrence rule. When set, ignores the Repeat Frequency, Repeat How Many Times, and Repeat Until parameters.\n - **Send Updates**: Whether to send notifications about the creation of the new event.\n - **Show Me As**: Whether the event blocks time on the calendar.\n - **Start**: The start time of the event.\n - **Summary**: The title of the event.\n - **Visibility**: The visibility of the event:\n - **Confidential**: The event is private. This value is provided for compatibility.\n - **Default**: Uses the default visibility for events on the calendar.\n - **Public**: The event is public and the event details are visible to all readers of the calendar.\n - **Private**: The event is private and only event attendees may view event details.\n\nRefer to the [Events: update | Google Calendar](https://developers.google.com/calendar/api/v3/reference/events/update) API documentation for more information.\n",
38583
+ "excerpt": "# Google Calendar Event operations Use these operations to create, delete, get, and update events in Google Calendar. Refer to [Google Calendar](../) for more information on the Google Calendar node itself. ## Create Use this operation to add an event to a Google Calendar. Enter these parameters: - **Credential to connect with**: Create or select an existing [Google Calendar credentials](../../../credentials/google/). - **Resource**: Select **Event**. - **Operation**: Select **Create**. - *...",
38584
+ "sections": [
38585
+ {
38586
+ "title": "Google Calendar Event operations",
38587
+ "level": 1,
38588
+ "content": "Use these operations to create, delete, get, and update events in Google Calendar. Refer to [Google Calendar](../) for more information on the Google Calendar node itself."
38589
+ }
38590
+ ]
38591
+ },
38592
+ "metadata": {
38593
+ "keywords": [
38594
+ "event",
38595
+ "operations",
38596
+ "google",
38597
+ "calendar",
38598
+ "create",
38599
+ "options",
38600
+ "delete",
38601
+ "many",
38602
+ "update"
38603
+ ],
38604
+ "useCases": [],
38605
+ "operations": [],
38606
+ "codeExamples": 0,
38607
+ "complexity": "intermediate",
38608
+ "readingTime": "8 min",
38609
+ "contentLength": 10453,
38610
+ "relatedPages": []
38611
+ },
38612
+ "searchIndex": {
38613
+ "fullText": "event operations # google calendar event operations\n\nuse these operations to create, delete, get, and update events in google calendar. refer to [google calendar](../) for more information on the google calendar node itself.\n\n## create\n\nuse this operation to add an event to a google calendar.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [google calendar credentials](../../../credentials/google/).\n- **resource**: select **event**.\n- **operation**: select **create**.\n- **calendar**: choose a calendar you want to add an event to. select **from list** to choose the title from the dropdown list or **by id** to enter a calendar id.\n- **start time**: the start time for the event. by default, uses an expression evaluating to the current time (`{{ $now }}`).\n- **end time**: the end time for the event. by default, this uses an expression evaluating to an hour from now (`{{ $now.plus(1, 'hour') }}`).\n- **use default reminders**: whether to enable default reminders for the event according to the calendar configuration.\n\n### options\n\n- **all day**: whether the event is all day or not.\n\n- **attendees**: attendees to invite to the event.\n\n- **color name or id**: the color of the event. choose from the list or specify the id using an expression.\n\n- **conference data**: creates a conference link (hangouts, meet, etc.) and attaches it to the event.\n\n- **description**: a description for the event.\n\n- **guests can invite others**: whether attendees other than the organizer can invite others to the event.\n\n- **guests can modify**: whether attendees other than the organizer can modify the event.\n\n- **guests can see other guests**: whether attendees other than the organizer can see who the event's attendees are.\n\n- **id**: opaque identifier of the event.\n\n- **location**: geographic location of the event as free-form text.\n\n- **max attendees**: the maximum number of attendees to include in the response. if there are more than the specified number of attendees, only returns the participant.\n\n- **repeat frequency**: the repetition interval for recurring events.\n\n- **repeat how many times?**: the number of instances to create for recurring events.\n\n- **repeat until**: the date at which recurring events should stop.\n\n- **rrule**: recurrence rule. when set, ignores the repeat frequency, repeat how many times, and repeat until parameters.\n\n- **send updates**: whether to send notifications about the creation of the new event.\n\n- **show me as**: whether the event blocks time on the calendar.\n\n- **summary**: the title of the event.\n\nrefer to the [events: insert | google calendar](https://developers.google.com/calendar/api/v3/reference/events/insert) api documentation for more information.\n\n## delete\n\nuse this operation to delete an event from a google calendar.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [google calendar credentials](../../../credentials/google/).\n- **resource**: select **event**.\n- **operation**: select **delete**.\n- **calendar**: choose a calendar you want to delete an event from. select **from list** to choose the title from the dropdown list or **by id** to enter a calendar id.\n- **event id**: the id of the event to delete.\n\n### options\n\n- **send updates**: whether to send notifications about the deletion of the event.\n\nrefer to the [events: delete | google calendar](https://developers.google.com/calendar/api/v3/reference/events/delete) api documentation for more information.\n\n## get\n\nuse this operation to retrieve an event from a google calendar.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [google calendar credentials](../../../credentials/google/).\n- **resource**: select **event**.\n- **operation**: select **get**.\n- **calendar**: choose a calendar you want to get an event from. select **from list** to choose the title from the dropdown list or **by id** to enter a calendar id.\n- **event id**: the id of the event to get.\n\n### options\n\n- **max attendees**: the maximum number of attendees to include in the response. if there are more than the specified number of attendees, only returns the participant.\n- **return next instance of recurrent event**: whether to return the next instance of a recurring event instead of the event itself.\n- **timezone**: the timezone used in the response. by default, uses the n8n timezone.\n\nrefer to the [events: get | google calendar](https://developers.google.com/calendar/api/v3/reference/events/get) api documentation for more information.\n\n## get many\n\nuse this operation to retrieve more than one event from a google calendar.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [google calendar credentials](../../../credentials/google/).\n- **resource**: select **event**.\n- **operation**: select **get many**.\n- **calendar**: choose a calendar you want to get an event from. select **from list** to choose the title from the dropdown list or **by id** to enter a calendar id.\n- **return all**: whether to return all results or only up to a given limit.\n- **limit**: (when \"return all\" isn't selected) the maximum number of results to return.\n- **after**: retrieve events that occur after this time. at least part of the event must be after this time. by default, this uses an expression evaluating to the current time (`{{ $now }}`). switch the field to \"fixed\" to select a date from a date widget.\n- **before**: retrieve events that occur before this time. at least part of the event must be before this time. by default, this uses an expression evaluating to the current time plus a week (`{{ $now.plus({ week: 1 }) }}`). switch the field to \"fixed\" to select a date from a date widget.\n\n### options\n\n- **fields**: specify the fields to return. by default, returns a set of commonly used fields predefined by google. use \"\\*\" to return all fields. you can find out more in [google calendar's documentation on working with partial resources](https://developers.google.com/calendar/api/guides/performance#partial).\n\n- **icaluid**: specifies an event id (in the icalendar format) to include in the response.\n\n- **max attendees**: the maximum number of attendees to include in the response. if there are more than the specified number of attendees, only returns the participant.\n\n- **order by**: the order to use for the events in the response.\n\n- **query**: free text search terms to find events that match. this searches all fields except for extended properties.\n\n- **recurring event handling**: what to do for recurring events:\n\n - **all occurrences**: return all instances of the recurring event for the specified time range.\n - **first occurrence**: return the first event of a recurring event within the specified time range.\n - **next occurrence**: return the next instance of a recurring event within the specified time range.\n\n- **show deleted**: whether to include deleted events (with status equal to \"cancelled\") in the results.\n\n- **show hidden invitations**: whether to include hidden invitations in the results.\n\n- **timezone**: the timezone used in the response. by default, uses the n8n timezone.\n\n- **updated min**: the lower bounds for an event's last modification time (as an [rfc 3339 timestamp](https://datatracker.ietf.org/doc/html/rfc3339))\n\nrefer to the [events: list | google calendar](https://developers.google.com/calendar/api/v3/reference/events/list) api documentation for more information.\n\n## update\n\nuse this operation to update an event in a google calendar.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [google calendar credentials](../../../credentials/google/).\n\n- **resource**: select **event**.\n\n- **operation**: select **update**.\n\n- **calendar**: choose a calendar you want to add an event to. select **from list** to choose the title from the dropdown list or **by id** to enter a calendar id.\n\n- **event id**: the id of the event to update.\n\n- **modify**: for recurring events, choose whether to update the recurring event or a specific instance of the recurring event.\n\n- **use default reminders**: whether to enable default reminders for the event according to the calendar configuration.\n\n- **update fields**: the fields of the event to update:\n\n - **all day**: whether the event is all day or not.\n - **attendees**: attendees to invite to the event. you can choose to either add attendees or replace the existing attendee list.\n - **color name or id**: the color of the event. choose from the list or specify the id using an expression.\n - **description**: a description for the event.\n - **end**: the end time of the event.\n - **guests can invite others**: whether attendees other than the organizer can invite others to the event.\n - **guests can modify**: whether attendees other than the organizer can make changes to the event.\n - **guests can see other guests**: whether attendees other than the organizer can see who the event's attendees are.\n - **id**: opaque identifier of the event.\n - **location**: geographic location of the event as free-form text.\n - **max attendees**: the maximum number of attendees to include in the response. if there are more than the specified number of attendees, only returns the participant.\n - **repeat frequency**: the repetition interval for recurring events.\n - **repeat how many times?**: the number of instances to create for recurring events.\n - **repeat until**: the date at which recurring events should stop.\n - **rrule**: recurrence rule. when set, ignores the repeat frequency, repeat how many times, and repeat until parameters.\n - **send updates**: whether to send notifications about the creation of the new event.\n - **show me as**: whether the event blocks time on the calendar.\n - **start**: the start time of the event.\n - **summary**: the title of the event.\n - **visibility**: the visibility of the event:\n - **confidential**: the event is private. ",
38614
+ "importantTerms": [
38615
+ "event",
38616
+ "calendar",
38617
+ "google",
38618
+ "attendees",
38619
+ "events",
38620
+ "select",
38621
+ "from",
38622
+ "whether",
38623
+ "time",
38624
+ "list",
38625
+ "recurring",
38626
+ "this",
38627
+ "choose",
38628
+ "default",
38629
+ "more",
38630
+ "repeat",
38631
+ "than",
38632
+ "number",
38633
+ "return",
38634
+ "create",
38635
+ "update",
38636
+ "operation",
38637
+ "enter",
38638
+ "credentials",
38639
+ "delete",
38640
+ "guests",
38641
+ "other",
38642
+ "response",
38643
+ "parameters",
38644
+ "with",
38645
+ "title",
38646
+ "uses",
38647
+ "include",
38648
+ "specified",
38649
+ "https",
38650
+ "fields",
38651
+ "these",
38652
+ "refer",
38653
+ "information",
38654
+ "existing",
38655
+ "expression",
38656
+ "invite",
38657
+ "organizer",
38658
+ "only",
38659
+ "many",
38660
+ "date",
38661
+ "send",
38662
+ "developers",
38663
+ "documentation",
38664
+ "timezone"
38665
+ ]
38666
+ }
38667
+ },
38668
+ {
38669
+ "id": "page-0504",
38448
38670
  "title": "Google Drive",
38449
38671
  "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googledrive/index.md",
38450
38672
  "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.googledrive/index.md",
@@ -38531,7 +38753,7 @@
38531
38753
  }
38532
38754
  },
38533
38755
  {
38534
- "id": "page-0504",
38756
+ "id": "page-0505",
38535
38757
  "title": "Common issues",
38536
38758
  "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googledrive/common-issues/index.md",
38537
38759
  "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.googledrive/common-issues/index.md",
@@ -38617,7 +38839,7 @@
38617
38839
  }
38618
38840
  },
38619
38841
  {
38620
- "id": "page-0505",
38842
+ "id": "page-0506",
38621
38843
  "title": "File and folder operations",
38622
38844
  "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googledrive/file-folder-operations/index.md",
38623
38845
  "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.googledrive/file-folder-operations/index.md",
@@ -38697,7 +38919,7 @@
38697
38919
  }
38698
38920
  },
38699
38921
  {
38700
- "id": "page-0506",
38922
+ "id": "page-0507",
38701
38923
  "title": "File operations",
38702
38924
  "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googledrive/file-operations/index.md",
38703
38925
  "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.googledrive/file-operations/index.md",
@@ -38798,102 +39020,6 @@
38798
39020
  ]
38799
39021
  }
38800
39022
  },
38801
- {
38802
- "id": "page-0507",
38803
- "title": "Event operations",
38804
- "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar/event-operations/index.md",
38805
- "urlPath": "integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar/event-operations/index.md",
38806
- "category": "integrations",
38807
- "subcategory": "app-nodes",
38808
- "nodeName": "googlecalendar",
38809
- "nodeType": "n8n-nodes-base.googlecalendar",
38810
- "content": {
38811
- "markdown": "# Google Calendar Event operations\n\nUse these operations to create, delete, get, and update events in Google Calendar. Refer to [Google Calendar](../) for more information on the Google Calendar node itself.\n\n## Create\n\nUse this operation to add an event to a Google Calendar.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Google Calendar credentials](../../../credentials/google/).\n- **Resource**: Select **Event**.\n- **Operation**: Select **Create**.\n- **Calendar**: Choose a calendar you want to add an event to. Select **From list** to choose the title from the dropdown list or **By ID** to enter a calendar ID.\n- **Start Time**: The start time for the event. By default, uses an expression evaluating to the current time (`{{ $now }}`).\n- **End Time**: The end time for the event. By default, this uses an expression evaluating to an hour from now (`{{ $now.plus(1, 'hour') }}`).\n- **Use Default Reminders**: Whether to enable default reminders for the event according to the calendar configuration.\n\n### Options\n\n- **All Day**: Whether the event is all day or not.\n\n- **Attendees**: Attendees to invite to the event.\n\n- **Color Name or ID**: The color of the event. Choose from the list or specify the ID using an expression.\n\n- **Conference Data**: Creates a conference link (Hangouts, Meet, etc.) and attaches it to the event.\n\n- **Description**: A description for the event.\n\n- **Guests Can Invite Others**: Whether attendees other than the organizer can invite others to the event.\n\n- **Guests Can Modify**: Whether attendees other than the organizer can modify the event.\n\n- **Guests Can See Other Guests**: Whether attendees other than the organizer can see who the event's attendees are.\n\n- **ID**: Opaque identifier of the event.\n\n- **Location**: Geographic location of the event as free-form text.\n\n- **Max Attendees**: The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only returns the participant.\n\n- **Repeat Frequency**: The repetition interval for recurring events.\n\n- **Repeat How Many Times?**: The number of instances to create for recurring events.\n\n- **Repeat Until**: The date at which recurring events should stop.\n\n- **RRULE**: Recurrence rule. When set, ignores the Repeat Frequency, Repeat How Many Times, and Repeat Until parameters.\n\n- **Send Updates**: Whether to send notifications about the creation of the new event.\n\n- **Show Me As**: Whether the event blocks time on the calendar.\n\n- **Summary**: The title of the event.\n\nRefer to the [Events: insert | Google Calendar](https://developers.google.com/calendar/api/v3/reference/events/insert) API documentation for more information.\n\n## Delete\n\nUse this operation to delete an event from a Google Calendar.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Google Calendar credentials](../../../credentials/google/).\n- **Resource**: Select **Event**.\n- **Operation**: Select **Delete**.\n- **Calendar**: Choose a calendar you want to delete an event from. Select **From list** to choose the title from the dropdown list or **By ID** to enter a calendar ID.\n- **Event ID**: The ID of the event to delete.\n\n### Options\n\n- **Send Updates**: Whether to send notifications about the deletion of the event.\n\nRefer to the [Events: delete | Google Calendar](https://developers.google.com/calendar/api/v3/reference/events/delete) API documentation for more information.\n\n## Get\n\nUse this operation to retrieve an event from a Google Calendar.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Google Calendar credentials](../../../credentials/google/).\n- **Resource**: Select **Event**.\n- **Operation**: Select **Get**.\n- **Calendar**: Choose a calendar you want to get an event from. Select **From list** to choose the title from the dropdown list or **By ID** to enter a calendar ID.\n- **Event ID**: The ID of the event to get.\n\n### Options\n\n- **Max Attendees**: The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only returns the participant.\n- **Return Next Instance of Recurrent Event**: Whether to return the next instance of a recurring event instead of the event itself.\n- **Timezone**: The timezone used in the response. By default, uses the n8n timezone.\n\nRefer to the [Events: get | Google Calendar](https://developers.google.com/calendar/api/v3/reference/events/get) API documentation for more information.\n\n## Get Many\n\nUse this operation to retrieve more than one event from a Google Calendar.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Google Calendar credentials](../../../credentials/google/).\n- **Resource**: Select **Event**.\n- **Operation**: Select **Get Many**.\n- **Calendar**: Choose a calendar you want to get an event from. Select **From list** to choose the title from the dropdown list or **By ID** to enter a calendar ID.\n- **Return All**: Whether to return all results or only up to a given limit.\n- **Limit**: (When \"Return All\" isn't selected) The maximum number of results to return.\n- **After**: Retrieve events that occur after this time. At least part of the event must be after this time. By default, this uses an expression evaluating to the current time (`{{ $now }}`). Switch the field to \"fixed\" to select a date from a date widget.\n- **Before**: Retrieve events that occur before this time. At least part of the event must be before this time. By default, this uses an expression evaluating to the current time plus a week (`{{ $now.plus({ week: 1 }) }}`). Switch the field to \"fixed\" to select a date from a date widget.\n\n### Options\n\n- **Fields**: Specify the fields to return. By default, returns a set of commonly used fields predefined by Google. Use \"\\*\" to return all fields. You can find out more in [Google Calendar's documentation on working with partial resources](https://developers.google.com/calendar/api/guides/performance#partial).\n\n- **iCalUID**: Specifies an event ID (in the iCalendar format) to include in the response.\n\n- **Max Attendees**: The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only returns the participant.\n\n- **Order By**: The order to use for the events in the response.\n\n- **Query**: Free text search terms to find events that match. This searches all fields except for extended properties.\n\n- **Recurring Event Handling**: What to do for recurring events:\n\n - **All Occurrences**: Return all instances of the recurring event for the specified time range.\n - **First Occurrence**: Return the first event of a recurring event within the specified time range.\n - **Next Occurrence**: Return the next instance of a recurring event within the specified time range.\n\n- **Show Deleted**: Whether to include deleted events (with status equal to \"cancelled\") in the results.\n\n- **Show Hidden Invitations**: Whether to include hidden invitations in the results.\n\n- **Timezone**: The timezone used in the response. By default, uses the n8n timezone.\n\n- **Updated Min**: The lower bounds for an event's last modification time (as an [RFC 3339 timestamp](https://datatracker.ietf.org/doc/html/rfc3339))\n\nRefer to the [Events: list | Google Calendar](https://developers.google.com/calendar/api/v3/reference/events/list) API documentation for more information.\n\n## Update\n\nUse this operation to update an event in a Google Calendar.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [Google Calendar credentials](../../../credentials/google/).\n\n- **Resource**: Select **Event**.\n\n- **Operation**: Select **Update**.\n\n- **Calendar**: Choose a calendar you want to add an event to. Select **From list** to choose the title from the dropdown list or **By ID** to enter a calendar ID.\n\n- **Event ID**: The ID of the event to update.\n\n- **Modify**: For recurring events, choose whether to update the recurring event or a specific instance of the recurring event.\n\n- **Use Default Reminders**: Whether to enable default reminders for the event according to the calendar configuration.\n\n- **Update Fields**: The fields of the event to update:\n\n - **All Day**: Whether the event is all day or not.\n - **Attendees**: Attendees to invite to the event. You can choose to either add attendees or replace the existing attendee list.\n - **Color Name or ID**: The color of the event. Choose from the list or specify the ID using an expression.\n - **Description**: A description for the event.\n - **End**: The end time of the event.\n - **Guests Can Invite Others**: Whether attendees other than the organizer can invite others to the event.\n - **Guests Can Modify**: Whether attendees other than the organizer can make changes to the event.\n - **Guests Can See Other Guests**: Whether attendees other than the organizer can see who the event's attendees are.\n - **ID**: Opaque identifier of the event.\n - **Location**: Geographic location of the event as free-form text.\n - **Max Attendees**: The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only returns the participant.\n - **Repeat Frequency**: The repetition interval for recurring events.\n - **Repeat How Many Times?**: The number of instances to create for recurring events.\n - **Repeat Until**: The date at which recurring events should stop.\n - **RRULE**: Recurrence rule. When set, ignores the Repeat Frequency, Repeat How Many Times, and Repeat Until parameters.\n - **Send Updates**: Whether to send notifications about the creation of the new event.\n - **Show Me As**: Whether the event blocks time on the calendar.\n - **Start**: The start time of the event.\n - **Summary**: The title of the event.\n - **Visibility**: The visibility of the event:\n - **Confidential**: The event is private. This value is provided for compatibility.\n - **Default**: Uses the default visibility for events on the calendar.\n - **Public**: The event is public and the event details are visible to all readers of the calendar.\n - **Private**: The event is private and only event attendees may view event details.\n\nRefer to the [Events: update | Google Calendar](https://developers.google.com/calendar/api/v3/reference/events/update) API documentation for more information.\n",
38812
- "excerpt": "# Google Calendar Event operations Use these operations to create, delete, get, and update events in Google Calendar. Refer to [Google Calendar](../) for more information on the Google Calendar node itself. ## Create Use this operation to add an event to a Google Calendar. Enter these parameters: - **Credential to connect with**: Create or select an existing [Google Calendar credentials](../../../credentials/google/). - **Resource**: Select **Event**. - **Operation**: Select **Create**. - *...",
38813
- "sections": [
38814
- {
38815
- "title": "Google Calendar Event operations",
38816
- "level": 1,
38817
- "content": "Use these operations to create, delete, get, and update events in Google Calendar. Refer to [Google Calendar](../) for more information on the Google Calendar node itself."
38818
- }
38819
- ]
38820
- },
38821
- "metadata": {
38822
- "keywords": [
38823
- "event",
38824
- "operations",
38825
- "google",
38826
- "calendar",
38827
- "create",
38828
- "options",
38829
- "delete",
38830
- "many",
38831
- "update"
38832
- ],
38833
- "useCases": [],
38834
- "operations": [],
38835
- "codeExamples": 0,
38836
- "complexity": "intermediate",
38837
- "readingTime": "8 min",
38838
- "contentLength": 10453,
38839
- "relatedPages": []
38840
- },
38841
- "searchIndex": {
38842
- "fullText": "event operations # google calendar event operations\n\nuse these operations to create, delete, get, and update events in google calendar. refer to [google calendar](../) for more information on the google calendar node itself.\n\n## create\n\nuse this operation to add an event to a google calendar.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [google calendar credentials](../../../credentials/google/).\n- **resource**: select **event**.\n- **operation**: select **create**.\n- **calendar**: choose a calendar you want to add an event to. select **from list** to choose the title from the dropdown list or **by id** to enter a calendar id.\n- **start time**: the start time for the event. by default, uses an expression evaluating to the current time (`{{ $now }}`).\n- **end time**: the end time for the event. by default, this uses an expression evaluating to an hour from now (`{{ $now.plus(1, 'hour') }}`).\n- **use default reminders**: whether to enable default reminders for the event according to the calendar configuration.\n\n### options\n\n- **all day**: whether the event is all day or not.\n\n- **attendees**: attendees to invite to the event.\n\n- **color name or id**: the color of the event. choose from the list or specify the id using an expression.\n\n- **conference data**: creates a conference link (hangouts, meet, etc.) and attaches it to the event.\n\n- **description**: a description for the event.\n\n- **guests can invite others**: whether attendees other than the organizer can invite others to the event.\n\n- **guests can modify**: whether attendees other than the organizer can modify the event.\n\n- **guests can see other guests**: whether attendees other than the organizer can see who the event's attendees are.\n\n- **id**: opaque identifier of the event.\n\n- **location**: geographic location of the event as free-form text.\n\n- **max attendees**: the maximum number of attendees to include in the response. if there are more than the specified number of attendees, only returns the participant.\n\n- **repeat frequency**: the repetition interval for recurring events.\n\n- **repeat how many times?**: the number of instances to create for recurring events.\n\n- **repeat until**: the date at which recurring events should stop.\n\n- **rrule**: recurrence rule. when set, ignores the repeat frequency, repeat how many times, and repeat until parameters.\n\n- **send updates**: whether to send notifications about the creation of the new event.\n\n- **show me as**: whether the event blocks time on the calendar.\n\n- **summary**: the title of the event.\n\nrefer to the [events: insert | google calendar](https://developers.google.com/calendar/api/v3/reference/events/insert) api documentation for more information.\n\n## delete\n\nuse this operation to delete an event from a google calendar.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [google calendar credentials](../../../credentials/google/).\n- **resource**: select **event**.\n- **operation**: select **delete**.\n- **calendar**: choose a calendar you want to delete an event from. select **from list** to choose the title from the dropdown list or **by id** to enter a calendar id.\n- **event id**: the id of the event to delete.\n\n### options\n\n- **send updates**: whether to send notifications about the deletion of the event.\n\nrefer to the [events: delete | google calendar](https://developers.google.com/calendar/api/v3/reference/events/delete) api documentation for more information.\n\n## get\n\nuse this operation to retrieve an event from a google calendar.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [google calendar credentials](../../../credentials/google/).\n- **resource**: select **event**.\n- **operation**: select **get**.\n- **calendar**: choose a calendar you want to get an event from. select **from list** to choose the title from the dropdown list or **by id** to enter a calendar id.\n- **event id**: the id of the event to get.\n\n### options\n\n- **max attendees**: the maximum number of attendees to include in the response. if there are more than the specified number of attendees, only returns the participant.\n- **return next instance of recurrent event**: whether to return the next instance of a recurring event instead of the event itself.\n- **timezone**: the timezone used in the response. by default, uses the n8n timezone.\n\nrefer to the [events: get | google calendar](https://developers.google.com/calendar/api/v3/reference/events/get) api documentation for more information.\n\n## get many\n\nuse this operation to retrieve more than one event from a google calendar.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [google calendar credentials](../../../credentials/google/).\n- **resource**: select **event**.\n- **operation**: select **get many**.\n- **calendar**: choose a calendar you want to get an event from. select **from list** to choose the title from the dropdown list or **by id** to enter a calendar id.\n- **return all**: whether to return all results or only up to a given limit.\n- **limit**: (when \"return all\" isn't selected) the maximum number of results to return.\n- **after**: retrieve events that occur after this time. at least part of the event must be after this time. by default, this uses an expression evaluating to the current time (`{{ $now }}`). switch the field to \"fixed\" to select a date from a date widget.\n- **before**: retrieve events that occur before this time. at least part of the event must be before this time. by default, this uses an expression evaluating to the current time plus a week (`{{ $now.plus({ week: 1 }) }}`). switch the field to \"fixed\" to select a date from a date widget.\n\n### options\n\n- **fields**: specify the fields to return. by default, returns a set of commonly used fields predefined by google. use \"\\*\" to return all fields. you can find out more in [google calendar's documentation on working with partial resources](https://developers.google.com/calendar/api/guides/performance#partial).\n\n- **icaluid**: specifies an event id (in the icalendar format) to include in the response.\n\n- **max attendees**: the maximum number of attendees to include in the response. if there are more than the specified number of attendees, only returns the participant.\n\n- **order by**: the order to use for the events in the response.\n\n- **query**: free text search terms to find events that match. this searches all fields except for extended properties.\n\n- **recurring event handling**: what to do for recurring events:\n\n - **all occurrences**: return all instances of the recurring event for the specified time range.\n - **first occurrence**: return the first event of a recurring event within the specified time range.\n - **next occurrence**: return the next instance of a recurring event within the specified time range.\n\n- **show deleted**: whether to include deleted events (with status equal to \"cancelled\") in the results.\n\n- **show hidden invitations**: whether to include hidden invitations in the results.\n\n- **timezone**: the timezone used in the response. by default, uses the n8n timezone.\n\n- **updated min**: the lower bounds for an event's last modification time (as an [rfc 3339 timestamp](https://datatracker.ietf.org/doc/html/rfc3339))\n\nrefer to the [events: list | google calendar](https://developers.google.com/calendar/api/v3/reference/events/list) api documentation for more information.\n\n## update\n\nuse this operation to update an event in a google calendar.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [google calendar credentials](../../../credentials/google/).\n\n- **resource**: select **event**.\n\n- **operation**: select **update**.\n\n- **calendar**: choose a calendar you want to add an event to. select **from list** to choose the title from the dropdown list or **by id** to enter a calendar id.\n\n- **event id**: the id of the event to update.\n\n- **modify**: for recurring events, choose whether to update the recurring event or a specific instance of the recurring event.\n\n- **use default reminders**: whether to enable default reminders for the event according to the calendar configuration.\n\n- **update fields**: the fields of the event to update:\n\n - **all day**: whether the event is all day or not.\n - **attendees**: attendees to invite to the event. you can choose to either add attendees or replace the existing attendee list.\n - **color name or id**: the color of the event. choose from the list or specify the id using an expression.\n - **description**: a description for the event.\n - **end**: the end time of the event.\n - **guests can invite others**: whether attendees other than the organizer can invite others to the event.\n - **guests can modify**: whether attendees other than the organizer can make changes to the event.\n - **guests can see other guests**: whether attendees other than the organizer can see who the event's attendees are.\n - **id**: opaque identifier of the event.\n - **location**: geographic location of the event as free-form text.\n - **max attendees**: the maximum number of attendees to include in the response. if there are more than the specified number of attendees, only returns the participant.\n - **repeat frequency**: the repetition interval for recurring events.\n - **repeat how many times?**: the number of instances to create for recurring events.\n - **repeat until**: the date at which recurring events should stop.\n - **rrule**: recurrence rule. when set, ignores the repeat frequency, repeat how many times, and repeat until parameters.\n - **send updates**: whether to send notifications about the creation of the new event.\n - **show me as**: whether the event blocks time on the calendar.\n - **start**: the start time of the event.\n - **summary**: the title of the event.\n - **visibility**: the visibility of the event:\n - **confidential**: the event is private. ",
38843
- "importantTerms": [
38844
- "event",
38845
- "calendar",
38846
- "google",
38847
- "attendees",
38848
- "events",
38849
- "select",
38850
- "from",
38851
- "whether",
38852
- "time",
38853
- "list",
38854
- "recurring",
38855
- "this",
38856
- "choose",
38857
- "default",
38858
- "more",
38859
- "repeat",
38860
- "than",
38861
- "number",
38862
- "return",
38863
- "create",
38864
- "update",
38865
- "operation",
38866
- "enter",
38867
- "credentials",
38868
- "delete",
38869
- "guests",
38870
- "other",
38871
- "response",
38872
- "parameters",
38873
- "with",
38874
- "title",
38875
- "uses",
38876
- "include",
38877
- "specified",
38878
- "https",
38879
- "fields",
38880
- "these",
38881
- "refer",
38882
- "information",
38883
- "existing",
38884
- "expression",
38885
- "invite",
38886
- "organizer",
38887
- "only",
38888
- "many",
38889
- "date",
38890
- "send",
38891
- "developers",
38892
- "documentation",
38893
- "timezone"
38894
- ]
38895
- }
38896
- },
38897
39023
  {
38898
39024
  "id": "page-0508",
38899
39025
  "title": "Folder operations",
@@ -59412,81 +59538,6 @@
59412
59538
  },
59413
59539
  {
59414
59540
  "id": "page-0751",
59415
- "title": "Bubble credentials",
59416
- "url": "https://docs.n8n.io/integrations/builtin/credentials/bubble/index.md",
59417
- "urlPath": "integrations/builtin/credentials/bubble/index.md",
59418
- "category": "other",
59419
- "subcategory": null,
59420
- "nodeName": null,
59421
- "nodeType": null,
59422
- "content": {
59423
- "markdown": "# Bubble credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Bubble](../../app-nodes/n8n-nodes-base.bubble/)\n\nAPI access\n\nYou need a paid plan to access the Bubble APIs.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Bubble's API documentation](https://manual.bubble.io/help-guides/integrations/api) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need a paid [Bubble](https://bubble.io) account and:\n\n- An **API Token**\n- An **App Name**\n- Your **Domain**, if you're using a custom domain\n\nTo set it up, you'll need to create an app:\n\n1. Go to the [**Apps**](https://bubble.io/home/apps) page in Bubble.\n1. Select **Create an app**.\n1. Enter a **Name** for your app, like `n8n-integration`.\n1. Select **Get started**. The app's details open.\n1. In the left navigation, select **Settings** (the gear cog icon).\n1. Select the **API** tab.\n1. In the **Public API Endpoints** section, check the box to **Enable Data API**.\n1. The page displays the **Data API root URL**, for example: `https://n8n-integration.bubbleapps.io/version-test/api/1.1/obj`.\n1. Copy the part of the URL after `https://` and before `.bubbleapps.io` and enter it in n8n as the **App Name**. In the above example, you'd enter `n8n-integration`.\n1. Select **Generate a new API token**.\n1. Enter an **API Token Label**, like `n8n integration`.\n1. Copy the **Private key** and enter it as the **API Token** in your n8n credential.\n - Refer to [Data API | Authentication](https://manual.bubble.io/core-resources/api/the-bubble-api/the-data-api/authentication) for more information on generating API tokens.\n1. In n8n, select the **Environment** that best matches your app:\n - Select **Development** for an app that you haven't deployed, accessed at `https://appname.bubbleapps.io/version-test` or `https://www.mydomain.com/version-test`.\n - Select **Live** for an app that you've [deployed](https://manual.bubble.io/help-guides/getting-started/navigating-the-bubble-editor/deploying-your-app), accessed at `https://appname.bubbleapps.io` or `https://www.mydomain.com`.\n1. In n8n, select your **Hosting**:\n - If you haven't set up a custom domain, select **Bubble Hosting**.\n - If you've set up a [custom domain](https://manual.bubble.io/help-guides/getting-started/navigating-the-bubble-editor/tabs-and-sections/settings-tab/web-app/custom-domain-and-dns), select **Self Hosted** and enter your custom **Domain**.\n\nRefer to Bubble's [Creating and managing apps](https://manual.bubble.io/help-guides/getting-started/creating-and-managing-apps) documentation for more information.\n",
59424
- "excerpt": "# Bubble credentials You can use these credentials to authenticate the following nodes: - [Bubble](../../app-nodes/n8n-nodes-base.bubble/) API access You need a paid plan to access the Bubble APIs. ## Supported authentication methods - API key ## Related resources Refer to [Bubble's API documentation](https://manual.bubble.io/help-guides/integrations/api) for more information about the service. ## Using API key To configure this credential, you'll need a paid [Bubble](https://bubble.io...",
59425
- "sections": [
59426
- {
59427
- "title": "Bubble credentials",
59428
- "level": 1,
59429
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [Bubble](../../app-nodes/n8n-nodes-base.bubble/)\n\nAPI access\n\nYou need a paid plan to access the Bubble APIs."
59430
- }
59431
- ]
59432
- },
59433
- "metadata": {
59434
- "keywords": [
59435
- "bubble",
59436
- "credentials",
59437
- "supported",
59438
- "authentication",
59439
- "methods",
59440
- "related",
59441
- "resources",
59442
- "using"
59443
- ],
59444
- "useCases": [
59445
- "`https://n8n-integration.bubbleapps.io/version-test/api/1.1/obj`."
59446
- ],
59447
- "operations": [],
59448
- "codeExamples": 0,
59449
- "complexity": "beginner",
59450
- "readingTime": "2 min",
59451
- "contentLength": 2668,
59452
- "relatedPages": []
59453
- },
59454
- "searchIndex": {
59455
- "fullText": "bubble credentials # bubble credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [bubble](../../app-nodes/n8n-nodes-base.bubble/)\n\napi access\n\nyou need a paid plan to access the bubble apis.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [bubble's api documentation](https://manual.bubble.io/help-guides/integrations/api) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need a paid [bubble](https://bubble.io) account and:\n\n- an **api token**\n- an **app name**\n- your **domain**, if you're using a custom domain\n\nto set it up, you'll need to create an app:\n\n1. go to the [**apps**](https://bubble.io/home/apps) page in bubble.\n1. select **create an app**.\n1. enter a **name** for your app, like `n8n-integration`.\n1. select **get started**. the app's details open.\n1. in the left navigation, select **settings** (the gear cog icon).\n1. select the **api** tab.\n1. in the **public api endpoints** section, check the box to **enable data api**.\n1. the page displays the **data api root url**, for example: `https://n8n-integration.bubbleapps.io/version-test/api/1.1/obj`.\n1. copy the part of the url after `https://` and before `.bubbleapps.io` and enter it in n8n as the **app name**. in the above example, you'd enter `n8n-integration`.\n1. select **generate a new api token**.\n1. enter an **api token label**, like `n8n integration`.\n1. copy the **private key** and enter it as the **api token** in your n8n credential.\n - refer to [data api | authentication](https://manual.bubble.io/core-resources/api/the-bubble-api/the-data-api/authentication) for more information on generating api tokens.\n1. in n8n, select the **environment** that best matches your app:\n - select **development** for an app that you haven't deployed, accessed at `https://appname.bubbleapps.io/version-test` or `https://www.mydomain.com/version-test`.\n - select **live** for an app that you've [deployed](https://manual.bubble.io/help-guides/getting-started/navigating-the-bubble-editor/deploying-your-app), accessed at `https://appname.bubbleapps.io` or `https://www.mydomain.com`.\n1. in n8n, select your **hosting**:\n - if you haven't set up a custom domain, select **bubble hosting**.\n - if you've set up a [custom domain](https://manual.bubble.io/help-guides/getting-started/navigating-the-bubble-editor/tabs-and-sections/settings-tab/web-app/custom-domain-and-dns), select **self hosted** and enter your custom **domain**.\n\nrefer to bubble's [creating and managing apps](https://manual.bubble.io/help-guides/getting-started/creating-and-managing-apps) documentation for more information.\n bubble credentials",
59456
- "importantTerms": [
59457
- "bubble",
59458
- "https",
59459
- "select",
59460
- "your",
59461
- "domain",
59462
- "enter",
59463
- "manual",
59464
- "custom",
59465
- "credentials",
59466
- "help",
59467
- "guides",
59468
- "token",
59469
- "apps",
59470
- "integration",
59471
- "started",
59472
- "data",
59473
- "bubbleapps",
59474
- "nodes",
59475
- "need",
59476
- "authentication",
59477
- "refer",
59478
- "more",
59479
- "information",
59480
- "name",
59481
- "version",
59482
- "test",
59483
- "that",
59484
- "getting"
59485
- ]
59486
- }
59487
- },
59488
- {
59489
- "id": "page-0752",
59490
59541
  "title": "Cal.com credentials",
59491
59542
  "url": "https://docs.n8n.io/integrations/builtin/credentials/cal/index.md",
59492
59543
  "urlPath": "integrations/builtin/credentials/cal/index.md",
@@ -59535,7 +59586,7 @@
59535
59586
  }
59536
59587
  },
59537
59588
  {
59538
- "id": "page-0753",
59589
+ "id": "page-0752",
59539
59590
  "title": "Calendly credentials",
59540
59591
  "url": "https://docs.n8n.io/integrations/builtin/credentials/calendly/index.md",
59541
59592
  "urlPath": "integrations/builtin/credentials/calendly/index.md",
@@ -59609,6 +59660,81 @@
59609
59660
  ]
59610
59661
  }
59611
59662
  },
59663
+ {
59664
+ "id": "page-0753",
59665
+ "title": "Bubble credentials",
59666
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/bubble/index.md",
59667
+ "urlPath": "integrations/builtin/credentials/bubble/index.md",
59668
+ "category": "other",
59669
+ "subcategory": null,
59670
+ "nodeName": null,
59671
+ "nodeType": null,
59672
+ "content": {
59673
+ "markdown": "# Bubble credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Bubble](../../app-nodes/n8n-nodes-base.bubble/)\n\nAPI access\n\nYou need a paid plan to access the Bubble APIs.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Bubble's API documentation](https://manual.bubble.io/help-guides/integrations/api) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need a paid [Bubble](https://bubble.io) account and:\n\n- An **API Token**\n- An **App Name**\n- Your **Domain**, if you're using a custom domain\n\nTo set it up, you'll need to create an app:\n\n1. Go to the [**Apps**](https://bubble.io/home/apps) page in Bubble.\n1. Select **Create an app**.\n1. Enter a **Name** for your app, like `n8n-integration`.\n1. Select **Get started**. The app's details open.\n1. In the left navigation, select **Settings** (the gear cog icon).\n1. Select the **API** tab.\n1. In the **Public API Endpoints** section, check the box to **Enable Data API**.\n1. The page displays the **Data API root URL**, for example: `https://n8n-integration.bubbleapps.io/version-test/api/1.1/obj`.\n1. Copy the part of the URL after `https://` and before `.bubbleapps.io` and enter it in n8n as the **App Name**. In the above example, you'd enter `n8n-integration`.\n1. Select **Generate a new API token**.\n1. Enter an **API Token Label**, like `n8n integration`.\n1. Copy the **Private key** and enter it as the **API Token** in your n8n credential.\n - Refer to [Data API | Authentication](https://manual.bubble.io/core-resources/api/the-bubble-api/the-data-api/authentication) for more information on generating API tokens.\n1. In n8n, select the **Environment** that best matches your app:\n - Select **Development** for an app that you haven't deployed, accessed at `https://appname.bubbleapps.io/version-test` or `https://www.mydomain.com/version-test`.\n - Select **Live** for an app that you've [deployed](https://manual.bubble.io/help-guides/getting-started/navigating-the-bubble-editor/deploying-your-app), accessed at `https://appname.bubbleapps.io` or `https://www.mydomain.com`.\n1. In n8n, select your **Hosting**:\n - If you haven't set up a custom domain, select **Bubble Hosting**.\n - If you've set up a [custom domain](https://manual.bubble.io/help-guides/getting-started/navigating-the-bubble-editor/tabs-and-sections/settings-tab/web-app/custom-domain-and-dns), select **Self Hosted** and enter your custom **Domain**.\n\nRefer to Bubble's [Creating and managing apps](https://manual.bubble.io/help-guides/getting-started/creating-and-managing-apps) documentation for more information.\n",
59674
+ "excerpt": "# Bubble credentials You can use these credentials to authenticate the following nodes: - [Bubble](../../app-nodes/n8n-nodes-base.bubble/) API access You need a paid plan to access the Bubble APIs. ## Supported authentication methods - API key ## Related resources Refer to [Bubble's API documentation](https://manual.bubble.io/help-guides/integrations/api) for more information about the service. ## Using API key To configure this credential, you'll need a paid [Bubble](https://bubble.io...",
59675
+ "sections": [
59676
+ {
59677
+ "title": "Bubble credentials",
59678
+ "level": 1,
59679
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [Bubble](../../app-nodes/n8n-nodes-base.bubble/)\n\nAPI access\n\nYou need a paid plan to access the Bubble APIs."
59680
+ }
59681
+ ]
59682
+ },
59683
+ "metadata": {
59684
+ "keywords": [
59685
+ "bubble",
59686
+ "credentials",
59687
+ "supported",
59688
+ "authentication",
59689
+ "methods",
59690
+ "related",
59691
+ "resources",
59692
+ "using"
59693
+ ],
59694
+ "useCases": [
59695
+ "`https://n8n-integration.bubbleapps.io/version-test/api/1.1/obj`."
59696
+ ],
59697
+ "operations": [],
59698
+ "codeExamples": 0,
59699
+ "complexity": "beginner",
59700
+ "readingTime": "2 min",
59701
+ "contentLength": 2668,
59702
+ "relatedPages": []
59703
+ },
59704
+ "searchIndex": {
59705
+ "fullText": "bubble credentials # bubble credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [bubble](../../app-nodes/n8n-nodes-base.bubble/)\n\napi access\n\nyou need a paid plan to access the bubble apis.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [bubble's api documentation](https://manual.bubble.io/help-guides/integrations/api) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need a paid [bubble](https://bubble.io) account and:\n\n- an **api token**\n- an **app name**\n- your **domain**, if you're using a custom domain\n\nto set it up, you'll need to create an app:\n\n1. go to the [**apps**](https://bubble.io/home/apps) page in bubble.\n1. select **create an app**.\n1. enter a **name** for your app, like `n8n-integration`.\n1. select **get started**. the app's details open.\n1. in the left navigation, select **settings** (the gear cog icon).\n1. select the **api** tab.\n1. in the **public api endpoints** section, check the box to **enable data api**.\n1. the page displays the **data api root url**, for example: `https://n8n-integration.bubbleapps.io/version-test/api/1.1/obj`.\n1. copy the part of the url after `https://` and before `.bubbleapps.io` and enter it in n8n as the **app name**. in the above example, you'd enter `n8n-integration`.\n1. select **generate a new api token**.\n1. enter an **api token label**, like `n8n integration`.\n1. copy the **private key** and enter it as the **api token** in your n8n credential.\n - refer to [data api | authentication](https://manual.bubble.io/core-resources/api/the-bubble-api/the-data-api/authentication) for more information on generating api tokens.\n1. in n8n, select the **environment** that best matches your app:\n - select **development** for an app that you haven't deployed, accessed at `https://appname.bubbleapps.io/version-test` or `https://www.mydomain.com/version-test`.\n - select **live** for an app that you've [deployed](https://manual.bubble.io/help-guides/getting-started/navigating-the-bubble-editor/deploying-your-app), accessed at `https://appname.bubbleapps.io` or `https://www.mydomain.com`.\n1. in n8n, select your **hosting**:\n - if you haven't set up a custom domain, select **bubble hosting**.\n - if you've set up a [custom domain](https://manual.bubble.io/help-guides/getting-started/navigating-the-bubble-editor/tabs-and-sections/settings-tab/web-app/custom-domain-and-dns), select **self hosted** and enter your custom **domain**.\n\nrefer to bubble's [creating and managing apps](https://manual.bubble.io/help-guides/getting-started/creating-and-managing-apps) documentation for more information.\n bubble credentials",
59706
+ "importantTerms": [
59707
+ "bubble",
59708
+ "https",
59709
+ "select",
59710
+ "your",
59711
+ "domain",
59712
+ "enter",
59713
+ "manual",
59714
+ "custom",
59715
+ "credentials",
59716
+ "help",
59717
+ "guides",
59718
+ "token",
59719
+ "apps",
59720
+ "integration",
59721
+ "started",
59722
+ "data",
59723
+ "bubbleapps",
59724
+ "nodes",
59725
+ "need",
59726
+ "authentication",
59727
+ "refer",
59728
+ "more",
59729
+ "information",
59730
+ "name",
59731
+ "version",
59732
+ "test",
59733
+ "that",
59734
+ "getting"
59735
+ ]
59736
+ }
59737
+ },
59612
59738
  {
59613
59739
  "id": "page-0754",
59614
59740
  "title": "Carbon Black credentials",
@@ -60019,6 +60145,66 @@
60019
60145
  },
60020
60146
  {
60021
60147
  "id": "page-0761",
60148
+ "title": "Webex by Cisco credentials",
60149
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/ciscowebex/index.md",
60150
+ "urlPath": "integrations/builtin/credentials/ciscowebex/index.md",
60151
+ "category": "other",
60152
+ "subcategory": null,
60153
+ "nodeName": null,
60154
+ "nodeType": null,
60155
+ "content": {
60156
+ "markdown": "# Webex by Cisco credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Webex by Cisco](../../app-nodes/n8n-nodes-base.ciscowebex/)\n- [Webex by Cisco Trigger](../../trigger-nodes/n8n-nodes-base.ciscowebextrigger/)\n\n## Prerequisites\n\nCreate a [Webex by Cisco](https://www.webex.com/) account (this should automatically get you [developer account access](https://developer.webex.com)).\n\n## Supported authentication methods\n\n- OAuth2\n\n## Related resources\n\nRefer to [Webex's API documentation](https://developer.webex.com/docs/getting-started) for more information about the service.\n\n## Using OAuth2\n\nNote for n8n Cloud users\n\nYou'll only need to enter the Credentials Name and select the **Connect my account** button in the OAuth credential to connect your Webex by Cisco account to n8n.\n\nShould you need to configure OAuth2 from scratch, you'll need to create an integration to use this credential. Refer to the instructions in the [Webex Registering your Integration documentation](https://developer.webex.com/docs/integrations#registering-your-integration) to begin.\n\nn8n recommends using the following **Scopes** for your integration:\n\n- `spark:rooms_read`\n- `spark:messages_write`\n- `spark:messages_read`\n- `spark:memberships_read`\n- `spark:memberships_write`\n- `meeting:recordings_write`\n- `meeting:recordings_read`\n- `meeting:preferences_read`\n- `meeting:schedules_write`\n- `meeting:schedules_read`\n",
60157
+ "excerpt": "# Webex by Cisco credentials You can use these credentials to authenticate the following nodes: - [Webex by Cisco](../../app-nodes/n8n-nodes-base.ciscowebex/) - [Webex by Cisco Trigger](../../trigger-nodes/n8n-nodes-base.ciscowebextrigger/) ## Prerequisites Create a [Webex by Cisco](https://www.webex.com/) account (this should automatically get you [developer account access](https://developer.webex.com)). ## Supported authentication methods - OAuth2 ## Related resources Refer to [Webex's...",
60158
+ "sections": [
60159
+ {
60160
+ "title": "Webex by Cisco credentials",
60161
+ "level": 1,
60162
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [Webex by Cisco](../../app-nodes/n8n-nodes-base.ciscowebex/)\n- [Webex by Cisco Trigger](../../trigger-nodes/n8n-nodes-base.ciscowebextrigger/)"
60163
+ }
60164
+ ]
60165
+ },
60166
+ "metadata": {
60167
+ "keywords": [
60168
+ "webex",
60169
+ "cisco",
60170
+ "credentials",
60171
+ "prerequisites",
60172
+ "supported",
60173
+ "authentication",
60174
+ "methods",
60175
+ "related",
60176
+ "resources",
60177
+ "using",
60178
+ "oauth2"
60179
+ ],
60180
+ "useCases": [],
60181
+ "operations": [],
60182
+ "codeExamples": 0,
60183
+ "complexity": "beginner",
60184
+ "readingTime": "1 min",
60185
+ "contentLength": 1435,
60186
+ "relatedPages": []
60187
+ },
60188
+ "searchIndex": {
60189
+ "fullText": "webex by cisco credentials # webex by cisco credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [webex by cisco](../../app-nodes/n8n-nodes-base.ciscowebex/)\n- [webex by cisco trigger](../../trigger-nodes/n8n-nodes-base.ciscowebextrigger/)\n\n## prerequisites\n\ncreate a [webex by cisco](https://www.webex.com/) account (this should automatically get you [developer account access](https://developer.webex.com)).\n\n## supported authentication methods\n\n- oauth2\n\n## related resources\n\nrefer to [webex's api documentation](https://developer.webex.com/docs/getting-started) for more information about the service.\n\n## using oauth2\n\nnote for n8n cloud users\n\nyou'll only need to enter the credentials name and select the **connect my account** button in the oauth credential to connect your webex by cisco account to n8n.\n\nshould you need to configure oauth2 from scratch, you'll need to create an integration to use this credential. refer to the instructions in the [webex registering your integration documentation](https://developer.webex.com/docs/integrations#registering-your-integration) to begin.\n\nn8n recommends using the following **scopes** for your integration:\n\n- `spark:rooms_read`\n- `spark:messages_write`\n- `spark:messages_read`\n- `spark:memberships_read`\n- `spark:memberships_write`\n- `meeting:recordings_write`\n- `meeting:recordings_read`\n- `meeting:preferences_read`\n- `meeting:schedules_write`\n- `meeting:schedules_read`\n webex by cisco credentials",
60190
+ "importantTerms": [
60191
+ "webex",
60192
+ "cisco",
60193
+ "credentials",
60194
+ "nodes",
60195
+ "spark",
60196
+ "meeting",
60197
+ "https",
60198
+ "account",
60199
+ "developer",
60200
+ "your",
60201
+ "integration",
60202
+ "need"
60203
+ ]
60204
+ }
60205
+ },
60206
+ {
60207
+ "id": "page-0762",
60022
60208
  "title": "Clearbit credentials",
60023
60209
  "url": "https://docs.n8n.io/integrations/builtin/credentials/clearbit/index.md",
60024
60210
  "urlPath": "integrations/builtin/credentials/clearbit/index.md",
@@ -60068,7 +60254,7 @@
60068
60254
  }
60069
60255
  },
60070
60256
  {
60071
- "id": "page-0762",
60257
+ "id": "page-0763",
60072
60258
  "title": "ClickUp credentials",
60073
60259
  "url": "https://docs.n8n.io/integrations/builtin/credentials/clickup/index.md",
60074
60260
  "urlPath": "integrations/builtin/credentials/clickup/index.md",
@@ -60140,7 +60326,7 @@
60140
60326
  }
60141
60327
  },
60142
60328
  {
60143
- "id": "page-0763",
60329
+ "id": "page-0764",
60144
60330
  "title": "Clockify credentials",
60145
60331
  "url": "https://docs.n8n.io/integrations/builtin/credentials/clockify/index.md",
60146
60332
  "urlPath": "integrations/builtin/credentials/clockify/index.md",
@@ -60190,7 +60376,7 @@
60190
60376
  }
60191
60377
  },
60192
60378
  {
60193
- "id": "page-0764",
60379
+ "id": "page-0765",
60194
60380
  "title": "Cloudflare credentials",
60195
60381
  "url": "https://docs.n8n.io/integrations/builtin/credentials/cloudflare/index.md",
60196
60382
  "urlPath": "integrations/builtin/credentials/cloudflare/index.md",
@@ -60244,66 +60430,6 @@
60244
60430
  ]
60245
60431
  }
60246
60432
  },
60247
- {
60248
- "id": "page-0765",
60249
- "title": "Webex by Cisco credentials",
60250
- "url": "https://docs.n8n.io/integrations/builtin/credentials/ciscowebex/index.md",
60251
- "urlPath": "integrations/builtin/credentials/ciscowebex/index.md",
60252
- "category": "other",
60253
- "subcategory": null,
60254
- "nodeName": null,
60255
- "nodeType": null,
60256
- "content": {
60257
- "markdown": "# Webex by Cisco credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Webex by Cisco](../../app-nodes/n8n-nodes-base.ciscowebex/)\n- [Webex by Cisco Trigger](../../trigger-nodes/n8n-nodes-base.ciscowebextrigger/)\n\n## Prerequisites\n\nCreate a [Webex by Cisco](https://www.webex.com/) account (this should automatically get you [developer account access](https://developer.webex.com)).\n\n## Supported authentication methods\n\n- OAuth2\n\n## Related resources\n\nRefer to [Webex's API documentation](https://developer.webex.com/docs/getting-started) for more information about the service.\n\n## Using OAuth2\n\nNote for n8n Cloud users\n\nYou'll only need to enter the Credentials Name and select the **Connect my account** button in the OAuth credential to connect your Webex by Cisco account to n8n.\n\nShould you need to configure OAuth2 from scratch, you'll need to create an integration to use this credential. Refer to the instructions in the [Webex Registering your Integration documentation](https://developer.webex.com/docs/integrations#registering-your-integration) to begin.\n\nn8n recommends using the following **Scopes** for your integration:\n\n- `spark:rooms_read`\n- `spark:messages_write`\n- `spark:messages_read`\n- `spark:memberships_read`\n- `spark:memberships_write`\n- `meeting:recordings_write`\n- `meeting:recordings_read`\n- `meeting:preferences_read`\n- `meeting:schedules_write`\n- `meeting:schedules_read`\n",
60258
- "excerpt": "# Webex by Cisco credentials You can use these credentials to authenticate the following nodes: - [Webex by Cisco](../../app-nodes/n8n-nodes-base.ciscowebex/) - [Webex by Cisco Trigger](../../trigger-nodes/n8n-nodes-base.ciscowebextrigger/) ## Prerequisites Create a [Webex by Cisco](https://www.webex.com/) account (this should automatically get you [developer account access](https://developer.webex.com)). ## Supported authentication methods - OAuth2 ## Related resources Refer to [Webex's...",
60259
- "sections": [
60260
- {
60261
- "title": "Webex by Cisco credentials",
60262
- "level": 1,
60263
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [Webex by Cisco](../../app-nodes/n8n-nodes-base.ciscowebex/)\n- [Webex by Cisco Trigger](../../trigger-nodes/n8n-nodes-base.ciscowebextrigger/)"
60264
- }
60265
- ]
60266
- },
60267
- "metadata": {
60268
- "keywords": [
60269
- "webex",
60270
- "cisco",
60271
- "credentials",
60272
- "prerequisites",
60273
- "supported",
60274
- "authentication",
60275
- "methods",
60276
- "related",
60277
- "resources",
60278
- "using",
60279
- "oauth2"
60280
- ],
60281
- "useCases": [],
60282
- "operations": [],
60283
- "codeExamples": 0,
60284
- "complexity": "beginner",
60285
- "readingTime": "1 min",
60286
- "contentLength": 1435,
60287
- "relatedPages": []
60288
- },
60289
- "searchIndex": {
60290
- "fullText": "webex by cisco credentials # webex by cisco credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [webex by cisco](../../app-nodes/n8n-nodes-base.ciscowebex/)\n- [webex by cisco trigger](../../trigger-nodes/n8n-nodes-base.ciscowebextrigger/)\n\n## prerequisites\n\ncreate a [webex by cisco](https://www.webex.com/) account (this should automatically get you [developer account access](https://developer.webex.com)).\n\n## supported authentication methods\n\n- oauth2\n\n## related resources\n\nrefer to [webex's api documentation](https://developer.webex.com/docs/getting-started) for more information about the service.\n\n## using oauth2\n\nnote for n8n cloud users\n\nyou'll only need to enter the credentials name and select the **connect my account** button in the oauth credential to connect your webex by cisco account to n8n.\n\nshould you need to configure oauth2 from scratch, you'll need to create an integration to use this credential. refer to the instructions in the [webex registering your integration documentation](https://developer.webex.com/docs/integrations#registering-your-integration) to begin.\n\nn8n recommends using the following **scopes** for your integration:\n\n- `spark:rooms_read`\n- `spark:messages_write`\n- `spark:messages_read`\n- `spark:memberships_read`\n- `spark:memberships_write`\n- `meeting:recordings_write`\n- `meeting:recordings_read`\n- `meeting:preferences_read`\n- `meeting:schedules_write`\n- `meeting:schedules_read`\n webex by cisco credentials",
60291
- "importantTerms": [
60292
- "webex",
60293
- "cisco",
60294
- "credentials",
60295
- "nodes",
60296
- "spark",
60297
- "meeting",
60298
- "https",
60299
- "account",
60300
- "developer",
60301
- "your",
60302
- "integration",
60303
- "need"
60304
- ]
60305
- }
60306
- },
60307
60433
  {
60308
60434
  "id": "page-0766",
60309
60435
  "title": "Cockpit credentials",
@@ -61331,6 +61457,60 @@
61331
61457
  },
61332
61458
  {
61333
61459
  "id": "page-0784",
61460
+ "title": "DHL credentials",
61461
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/dhl/index.md",
61462
+ "urlPath": "integrations/builtin/credentials/dhl/index.md",
61463
+ "category": "other",
61464
+ "subcategory": null,
61465
+ "nodeName": null,
61466
+ "nodeType": null,
61467
+ "content": {
61468
+ "markdown": "# DHL credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [DHL](../../app-nodes/n8n-nodes-base.dhl/)\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [DHL's Developer documentation](https://support-developer.dhl.com/support/home) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need a [DHL Developer](https://developer.dhl.com/user/register) account and:\n\n- An **API Key**\n\nTo get an API key, create an app:\n\n1. In the DHL Developer portal, select the user icon to open your [User Apps](https://developer.dhl.com/user/apps).\n1. Select **+ Create App**.\n1. Enter an **App name**, like `n8n integration`.\n1. Enter a **Machine name**, like `n8n_integration`.\n1. In **SELECT APIs**, select **Shipment Tracking - Unified**. The API is added to the **Add API to app** section.\n1. In the **Add API to app** section, select the **+** next to the **Shipment Tracking - Unified** API.\n1. Select **Create App**. The **Apps** page opens, displaying the app you just created.\n1. Select the app you just created to view its details.\n1. Select **Show key** next to **API Key**.\n1. Copy the **API Key** and enter it in your n8n credential.\n\nRefer to [How to create an app?](https://support-developer.dhl.com/support/solutions/articles/47001177011-how-to-create-an-app-) for more information.\n",
61469
+ "excerpt": "# DHL credentials You can use these credentials to authenticate the following nodes: - [DHL](../../app-nodes/n8n-nodes-base.dhl/) ## Supported authentication methods - API key ## Related resources Refer to [DHL's Developer documentation](https://support-developer.dhl.com/support/home) for more information about the service. ## Using API key To configure this credential, you'll need a [DHL Developer](https://developer.dhl.com/user/register) account and: - An **API Key** To get an API ke...",
61470
+ "sections": [
61471
+ {
61472
+ "title": "DHL credentials",
61473
+ "level": 1,
61474
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [DHL](../../app-nodes/n8n-nodes-base.dhl/)"
61475
+ }
61476
+ ]
61477
+ },
61478
+ "metadata": {
61479
+ "keywords": [
61480
+ "credentials",
61481
+ "supported",
61482
+ "authentication",
61483
+ "methods",
61484
+ "related",
61485
+ "resources",
61486
+ "using"
61487
+ ],
61488
+ "useCases": [],
61489
+ "operations": [],
61490
+ "codeExamples": 0,
61491
+ "complexity": "beginner",
61492
+ "readingTime": "1 min",
61493
+ "contentLength": 1386,
61494
+ "relatedPages": []
61495
+ },
61496
+ "searchIndex": {
61497
+ "fullText": "dhl credentials # dhl credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [dhl](../../app-nodes/n8n-nodes-base.dhl/)\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [dhl's developer documentation](https://support-developer.dhl.com/support/home) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need a [dhl developer](https://developer.dhl.com/user/register) account and:\n\n- an **api key**\n\nto get an api key, create an app:\n\n1. in the dhl developer portal, select the user icon to open your [user apps](https://developer.dhl.com/user/apps).\n1. select **+ create app**.\n1. enter an **app name**, like `n8n integration`.\n1. enter a **machine name**, like `n8n_integration`.\n1. in **select apis**, select **shipment tracking - unified**. the api is added to the **add api to app** section.\n1. in the **add api to app** section, select the **+** next to the **shipment tracking - unified** api.\n1. select **create app**. the **apps** page opens, displaying the app you just created.\n1. select the app you just created to view its details.\n1. select **show key** next to **api key**.\n1. copy the **api key** and enter it in your n8n credential.\n\nrefer to [how to create an app?](https://support-developer.dhl.com/support/solutions/articles/47001177011-how-to-create-an-app-) for more information.\n dhl credentials",
61498
+ "importantTerms": [
61499
+ "select",
61500
+ "developer",
61501
+ "create",
61502
+ "credentials",
61503
+ "https",
61504
+ "support",
61505
+ "user",
61506
+ "nodes",
61507
+ "apps",
61508
+ "enter"
61509
+ ]
61510
+ }
61511
+ },
61512
+ {
61513
+ "id": "page-0785",
61334
61514
  "title": "Discord credentials",
61335
61515
  "url": "https://docs.n8n.io/integrations/builtin/credentials/discord/index.md",
61336
61516
  "urlPath": "integrations/builtin/credentials/discord/index.md",
@@ -61430,7 +61610,7 @@
61430
61610
  }
61431
61611
  },
61432
61612
  {
61433
- "id": "page-0785",
61613
+ "id": "page-0786",
61434
61614
  "title": "Discourse credentials",
61435
61615
  "url": "https://docs.n8n.io/integrations/builtin/credentials/discourse/index.md",
61436
61616
  "urlPath": "integrations/builtin/credentials/discourse/index.md",
@@ -61486,7 +61666,7 @@
61486
61666
  }
61487
61667
  },
61488
61668
  {
61489
- "id": "page-0786",
61669
+ "id": "page-0787",
61490
61670
  "title": "Disqus credentials",
61491
61671
  "url": "https://docs.n8n.io/integrations/builtin/credentials/disqus/index.md",
61492
61672
  "urlPath": "integrations/builtin/credentials/disqus/index.md",
@@ -61540,60 +61720,6 @@
61540
61720
  ]
61541
61721
  }
61542
61722
  },
61543
- {
61544
- "id": "page-0787",
61545
- "title": "DHL credentials",
61546
- "url": "https://docs.n8n.io/integrations/builtin/credentials/dhl/index.md",
61547
- "urlPath": "integrations/builtin/credentials/dhl/index.md",
61548
- "category": "other",
61549
- "subcategory": null,
61550
- "nodeName": null,
61551
- "nodeType": null,
61552
- "content": {
61553
- "markdown": "# DHL credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [DHL](../../app-nodes/n8n-nodes-base.dhl/)\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [DHL's Developer documentation](https://support-developer.dhl.com/support/home) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need a [DHL Developer](https://developer.dhl.com/user/register) account and:\n\n- An **API Key**\n\nTo get an API key, create an app:\n\n1. In the DHL Developer portal, select the user icon to open your [User Apps](https://developer.dhl.com/user/apps).\n1. Select **+ Create App**.\n1. Enter an **App name**, like `n8n integration`.\n1. Enter a **Machine name**, like `n8n_integration`.\n1. In **SELECT APIs**, select **Shipment Tracking - Unified**. The API is added to the **Add API to app** section.\n1. In the **Add API to app** section, select the **+** next to the **Shipment Tracking - Unified** API.\n1. Select **Create App**. The **Apps** page opens, displaying the app you just created.\n1. Select the app you just created to view its details.\n1. Select **Show key** next to **API Key**.\n1. Copy the **API Key** and enter it in your n8n credential.\n\nRefer to [How to create an app?](https://support-developer.dhl.com/support/solutions/articles/47001177011-how-to-create-an-app-) for more information.\n",
61554
- "excerpt": "# DHL credentials You can use these credentials to authenticate the following nodes: - [DHL](../../app-nodes/n8n-nodes-base.dhl/) ## Supported authentication methods - API key ## Related resources Refer to [DHL's Developer documentation](https://support-developer.dhl.com/support/home) for more information about the service. ## Using API key To configure this credential, you'll need a [DHL Developer](https://developer.dhl.com/user/register) account and: - An **API Key** To get an API ke...",
61555
- "sections": [
61556
- {
61557
- "title": "DHL credentials",
61558
- "level": 1,
61559
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [DHL](../../app-nodes/n8n-nodes-base.dhl/)"
61560
- }
61561
- ]
61562
- },
61563
- "metadata": {
61564
- "keywords": [
61565
- "credentials",
61566
- "supported",
61567
- "authentication",
61568
- "methods",
61569
- "related",
61570
- "resources",
61571
- "using"
61572
- ],
61573
- "useCases": [],
61574
- "operations": [],
61575
- "codeExamples": 0,
61576
- "complexity": "beginner",
61577
- "readingTime": "1 min",
61578
- "contentLength": 1386,
61579
- "relatedPages": []
61580
- },
61581
- "searchIndex": {
61582
- "fullText": "dhl credentials # dhl credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [dhl](../../app-nodes/n8n-nodes-base.dhl/)\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [dhl's developer documentation](https://support-developer.dhl.com/support/home) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need a [dhl developer](https://developer.dhl.com/user/register) account and:\n\n- an **api key**\n\nto get an api key, create an app:\n\n1. in the dhl developer portal, select the user icon to open your [user apps](https://developer.dhl.com/user/apps).\n1. select **+ create app**.\n1. enter an **app name**, like `n8n integration`.\n1. enter a **machine name**, like `n8n_integration`.\n1. in **select apis**, select **shipment tracking - unified**. the api is added to the **add api to app** section.\n1. in the **add api to app** section, select the **+** next to the **shipment tracking - unified** api.\n1. select **create app**. the **apps** page opens, displaying the app you just created.\n1. select the app you just created to view its details.\n1. select **show key** next to **api key**.\n1. copy the **api key** and enter it in your n8n credential.\n\nrefer to [how to create an app?](https://support-developer.dhl.com/support/solutions/articles/47001177011-how-to-create-an-app-) for more information.\n dhl credentials",
61583
- "importantTerms": [
61584
- "select",
61585
- "developer",
61586
- "create",
61587
- "credentials",
61588
- "https",
61589
- "support",
61590
- "user",
61591
- "nodes",
61592
- "apps",
61593
- "enter"
61594
- ]
61595
- }
61596
- },
61597
61723
  {
61598
61724
  "id": "page-0788",
61599
61725
  "title": "Drift credentials",
@@ -66429,6 +66555,77 @@
66429
66555
  },
66430
66556
  {
66431
66557
  "id": "page-0864",
66558
+ "title": "Mailjet credentials",
66559
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/mailjet/index.md",
66560
+ "urlPath": "integrations/builtin/credentials/mailjet/index.md",
66561
+ "category": "other",
66562
+ "subcategory": null,
66563
+ "nodeName": null,
66564
+ "nodeType": null,
66565
+ "content": {
66566
+ "markdown": "# Mailjet credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Mailjet](../../app-nodes/n8n-nodes-base.mailjet/)\n- [Mailjet Trigger](../../trigger-nodes/n8n-nodes-base.mailjettrigger/)\n\n## Prerequisites\n\nCreate a [Mailjet](https://www.mailjet.com/) account.\n\n## Supported authentication methods\n\n- Email API key: For use with Mailjet's Email API\n- SMS token: For use with Mailjet's SMS API\n\n## Related resources\n\nRefer to [Mailjet's Email API documentation](https://dev.mailjet.com/email/guides/) and [Mailjet's SMS API documentation](https://dev.mailjet.com/sms/reference/send-message/) for more information about each service.\n\n## Using Email API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**: View and generate API keys in your Mailjet [API Key Management](https://app.mailjet.com/signin) page.\n- A **Secret Key**: View your API Secret Keys in your Mailjet [API Key Management](https://app.mailjet.com/signin) page.\n- *Optional:* Select whether to use **Sandbox Mode** for calls made using this credential. When turned on, all API calls use Sandbox mode: the API will still validate the payloads but won't deliver the actual messages. This can be useful to troubleshoot any payload error messages without actually sending messages. Refer to Mailjet's [Sandbox Mode documentation](https://dev.mailjet.com/email/guides/send-api-v31/#sandbox-mode) for more information.\n\nFor this credential, you can use either:\n\n- Mailjet's primary API key and secret key\n- A subaccount API key and secret key\n\nRefer to Mailjet's [How to create a subaccount (or additional API key) documentation](https://documentation.mailjet.com/hc/en-us/articles/360042561974-How-to-create-a-subaccount-or-additional-API-Key) for detailed instructions on creating more API keys. Refer to [What are subaccounts and how does it help me?](https://documentation.mailjet.com/hc/en-us/articles/360042561854-What-are-subaccounts-and-how-does-it-help-me) page for more information on Mailjet subaccounts and when you might want to use one.\n\n## Using SMS Token\n\nTo configure this credential, you'll need:\n\n- An access **Token**: Generate a new token from Mailjet's [SMS Dashboard](https://app.mailjet.com/sms).\n",
66567
+ "excerpt": "# Mailjet credentials You can use these credentials to authenticate the following nodes: - [Mailjet](../../app-nodes/n8n-nodes-base.mailjet/) - [Mailjet Trigger](../../trigger-nodes/n8n-nodes-base.mailjettrigger/) ## Prerequisites Create a [Mailjet](https://www.mailjet.com/) account. ## Supported authentication methods - Email API key: For use with Mailjet's Email API - SMS token: For use with Mailjet's SMS API ## Related resources Refer to [Mailjet's Email API documentation](https://dev...",
66568
+ "sections": [
66569
+ {
66570
+ "title": "Mailjet credentials",
66571
+ "level": 1,
66572
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [Mailjet](../../app-nodes/n8n-nodes-base.mailjet/)\n- [Mailjet Trigger](../../trigger-nodes/n8n-nodes-base.mailjettrigger/)"
66573
+ }
66574
+ ]
66575
+ },
66576
+ "metadata": {
66577
+ "keywords": [
66578
+ "mailjet",
66579
+ "credentials",
66580
+ "prerequisites",
66581
+ "supported",
66582
+ "authentication",
66583
+ "methods",
66584
+ "related",
66585
+ "resources",
66586
+ "using",
66587
+ "email",
66588
+ "token"
66589
+ ],
66590
+ "useCases": [],
66591
+ "operations": [],
66592
+ "codeExamples": 0,
66593
+ "complexity": "beginner",
66594
+ "readingTime": "2 min",
66595
+ "contentLength": 2223,
66596
+ "relatedPages": []
66597
+ },
66598
+ "searchIndex": {
66599
+ "fullText": "mailjet credentials # mailjet credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [mailjet](../../app-nodes/n8n-nodes-base.mailjet/)\n- [mailjet trigger](../../trigger-nodes/n8n-nodes-base.mailjettrigger/)\n\n## prerequisites\n\ncreate a [mailjet](https://www.mailjet.com/) account.\n\n## supported authentication methods\n\n- email api key: for use with mailjet's email api\n- sms token: for use with mailjet's sms api\n\n## related resources\n\nrefer to [mailjet's email api documentation](https://dev.mailjet.com/email/guides/) and [mailjet's sms api documentation](https://dev.mailjet.com/sms/reference/send-message/) for more information about each service.\n\n## using email api key\n\nto configure this credential, you'll need:\n\n- an **api key**: view and generate api keys in your mailjet [api key management](https://app.mailjet.com/signin) page.\n- a **secret key**: view your api secret keys in your mailjet [api key management](https://app.mailjet.com/signin) page.\n- *optional:* select whether to use **sandbox mode** for calls made using this credential. when turned on, all api calls use sandbox mode: the api will still validate the payloads but won't deliver the actual messages. this can be useful to troubleshoot any payload error messages without actually sending messages. refer to mailjet's [sandbox mode documentation](https://dev.mailjet.com/email/guides/send-api-v31/#sandbox-mode) for more information.\n\nfor this credential, you can use either:\n\n- mailjet's primary api key and secret key\n- a subaccount api key and secret key\n\nrefer to mailjet's [how to create a subaccount (or additional api key) documentation](https://documentation.mailjet.com/hc/en-us/articles/360042561974-how-to-create-a-subaccount-or-additional-api-key) for detailed instructions on creating more api keys. refer to [what are subaccounts and how does it help me?](https://documentation.mailjet.com/hc/en-us/articles/360042561854-what-are-subaccounts-and-how-does-it-help-me) page for more information on mailjet subaccounts and when you might want to use one.\n\n## using sms token\n\nto configure this credential, you'll need:\n\n- an access **token**: generate a new token from mailjet's [sms dashboard](https://app.mailjet.com/sms).\n mailjet credentials",
66600
+ "importantTerms": [
66601
+ "mailjet",
66602
+ "https",
66603
+ "email",
66604
+ "documentation",
66605
+ "nodes",
66606
+ "this",
66607
+ "credentials",
66608
+ "token",
66609
+ "refer",
66610
+ "more",
66611
+ "credential",
66612
+ "secret",
66613
+ "sandbox",
66614
+ "mode",
66615
+ "create",
66616
+ "information",
66617
+ "using",
66618
+ "keys",
66619
+ "your",
66620
+ "page",
66621
+ "messages",
66622
+ "subaccount",
66623
+ "subaccounts"
66624
+ ]
66625
+ }
66626
+ },
66627
+ {
66628
+ "id": "page-0865",
66432
66629
  "title": "Malcore credentials",
66433
66630
  "url": "https://docs.n8n.io/integrations/builtin/credentials/malcore/index.md",
66434
66631
  "urlPath": "integrations/builtin/credentials/malcore/index.md",
@@ -66479,7 +66676,7 @@
66479
66676
  }
66480
66677
  },
66481
66678
  {
66482
- "id": "page-0865",
66679
+ "id": "page-0866",
66483
66680
  "title": "Mandrill credentials",
66484
66681
  "url": "https://docs.n8n.io/integrations/builtin/credentials/mandrill/index.md",
66485
66682
  "urlPath": "integrations/builtin/credentials/mandrill/index.md",
@@ -66535,7 +66732,7 @@
66535
66732
  }
66536
66733
  },
66537
66734
  {
66538
- "id": "page-0866",
66735
+ "id": "page-0867",
66539
66736
  "title": "Marketstack credentials",
66540
66737
  "url": "https://docs.n8n.io/integrations/builtin/credentials/marketstack/index.md",
66541
66738
  "urlPath": "integrations/builtin/credentials/marketstack/index.md",
@@ -66585,77 +66782,6 @@
66585
66782
  ]
66586
66783
  }
66587
66784
  },
66588
- {
66589
- "id": "page-0867",
66590
- "title": "Mailjet credentials",
66591
- "url": "https://docs.n8n.io/integrations/builtin/credentials/mailjet/index.md",
66592
- "urlPath": "integrations/builtin/credentials/mailjet/index.md",
66593
- "category": "other",
66594
- "subcategory": null,
66595
- "nodeName": null,
66596
- "nodeType": null,
66597
- "content": {
66598
- "markdown": "# Mailjet credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Mailjet](../../app-nodes/n8n-nodes-base.mailjet/)\n- [Mailjet Trigger](../../trigger-nodes/n8n-nodes-base.mailjettrigger/)\n\n## Prerequisites\n\nCreate a [Mailjet](https://www.mailjet.com/) account.\n\n## Supported authentication methods\n\n- Email API key: For use with Mailjet's Email API\n- SMS token: For use with Mailjet's SMS API\n\n## Related resources\n\nRefer to [Mailjet's Email API documentation](https://dev.mailjet.com/email/guides/) and [Mailjet's SMS API documentation](https://dev.mailjet.com/sms/reference/send-message/) for more information about each service.\n\n## Using Email API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**: View and generate API keys in your Mailjet [API Key Management](https://app.mailjet.com/signin) page.\n- A **Secret Key**: View your API Secret Keys in your Mailjet [API Key Management](https://app.mailjet.com/signin) page.\n- *Optional:* Select whether to use **Sandbox Mode** for calls made using this credential. When turned on, all API calls use Sandbox mode: the API will still validate the payloads but won't deliver the actual messages. This can be useful to troubleshoot any payload error messages without actually sending messages. Refer to Mailjet's [Sandbox Mode documentation](https://dev.mailjet.com/email/guides/send-api-v31/#sandbox-mode) for more information.\n\nFor this credential, you can use either:\n\n- Mailjet's primary API key and secret key\n- A subaccount API key and secret key\n\nRefer to Mailjet's [How to create a subaccount (or additional API key) documentation](https://documentation.mailjet.com/hc/en-us/articles/360042561974-How-to-create-a-subaccount-or-additional-API-Key) for detailed instructions on creating more API keys. Refer to [What are subaccounts and how does it help me?](https://documentation.mailjet.com/hc/en-us/articles/360042561854-What-are-subaccounts-and-how-does-it-help-me) page for more information on Mailjet subaccounts and when you might want to use one.\n\n## Using SMS Token\n\nTo configure this credential, you'll need:\n\n- An access **Token**: Generate a new token from Mailjet's [SMS Dashboard](https://app.mailjet.com/sms).\n",
66599
- "excerpt": "# Mailjet credentials You can use these credentials to authenticate the following nodes: - [Mailjet](../../app-nodes/n8n-nodes-base.mailjet/) - [Mailjet Trigger](../../trigger-nodes/n8n-nodes-base.mailjettrigger/) ## Prerequisites Create a [Mailjet](https://www.mailjet.com/) account. ## Supported authentication methods - Email API key: For use with Mailjet's Email API - SMS token: For use with Mailjet's SMS API ## Related resources Refer to [Mailjet's Email API documentation](https://dev...",
66600
- "sections": [
66601
- {
66602
- "title": "Mailjet credentials",
66603
- "level": 1,
66604
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [Mailjet](../../app-nodes/n8n-nodes-base.mailjet/)\n- [Mailjet Trigger](../../trigger-nodes/n8n-nodes-base.mailjettrigger/)"
66605
- }
66606
- ]
66607
- },
66608
- "metadata": {
66609
- "keywords": [
66610
- "mailjet",
66611
- "credentials",
66612
- "prerequisites",
66613
- "supported",
66614
- "authentication",
66615
- "methods",
66616
- "related",
66617
- "resources",
66618
- "using",
66619
- "email",
66620
- "token"
66621
- ],
66622
- "useCases": [],
66623
- "operations": [],
66624
- "codeExamples": 0,
66625
- "complexity": "beginner",
66626
- "readingTime": "2 min",
66627
- "contentLength": 2223,
66628
- "relatedPages": []
66629
- },
66630
- "searchIndex": {
66631
- "fullText": "mailjet credentials # mailjet credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [mailjet](../../app-nodes/n8n-nodes-base.mailjet/)\n- [mailjet trigger](../../trigger-nodes/n8n-nodes-base.mailjettrigger/)\n\n## prerequisites\n\ncreate a [mailjet](https://www.mailjet.com/) account.\n\n## supported authentication methods\n\n- email api key: for use with mailjet's email api\n- sms token: for use with mailjet's sms api\n\n## related resources\n\nrefer to [mailjet's email api documentation](https://dev.mailjet.com/email/guides/) and [mailjet's sms api documentation](https://dev.mailjet.com/sms/reference/send-message/) for more information about each service.\n\n## using email api key\n\nto configure this credential, you'll need:\n\n- an **api key**: view and generate api keys in your mailjet [api key management](https://app.mailjet.com/signin) page.\n- a **secret key**: view your api secret keys in your mailjet [api key management](https://app.mailjet.com/signin) page.\n- *optional:* select whether to use **sandbox mode** for calls made using this credential. when turned on, all api calls use sandbox mode: the api will still validate the payloads but won't deliver the actual messages. this can be useful to troubleshoot any payload error messages without actually sending messages. refer to mailjet's [sandbox mode documentation](https://dev.mailjet.com/email/guides/send-api-v31/#sandbox-mode) for more information.\n\nfor this credential, you can use either:\n\n- mailjet's primary api key and secret key\n- a subaccount api key and secret key\n\nrefer to mailjet's [how to create a subaccount (or additional api key) documentation](https://documentation.mailjet.com/hc/en-us/articles/360042561974-how-to-create-a-subaccount-or-additional-api-key) for detailed instructions on creating more api keys. refer to [what are subaccounts and how does it help me?](https://documentation.mailjet.com/hc/en-us/articles/360042561854-what-are-subaccounts-and-how-does-it-help-me) page for more information on mailjet subaccounts and when you might want to use one.\n\n## using sms token\n\nto configure this credential, you'll need:\n\n- an access **token**: generate a new token from mailjet's [sms dashboard](https://app.mailjet.com/sms).\n mailjet credentials",
66632
- "importantTerms": [
66633
- "mailjet",
66634
- "https",
66635
- "email",
66636
- "documentation",
66637
- "nodes",
66638
- "this",
66639
- "credentials",
66640
- "token",
66641
- "refer",
66642
- "more",
66643
- "credential",
66644
- "secret",
66645
- "sandbox",
66646
- "mode",
66647
- "create",
66648
- "information",
66649
- "using",
66650
- "keys",
66651
- "your",
66652
- "page",
66653
- "messages",
66654
- "subaccount",
66655
- "subaccounts"
66656
- ]
66657
- }
66658
- },
66659
66785
  {
66660
66786
  "id": "page-0868",
66661
66787
  "title": "Matrix credentials",
@@ -92323,6 +92449,7 @@
92323
92449
  "page-0168",
92324
92450
  "page-0196",
92325
92451
  "page-0197",
92452
+ "page-0202",
92326
92453
  "page-0203",
92327
92454
  "page-0207",
92328
92455
  "page-0208",
@@ -92734,8 +92861,8 @@
92734
92861
  "page-0499",
92735
92862
  "page-0500",
92736
92863
  "page-0501",
92737
- "page-0503",
92738
92864
  "page-0504",
92865
+ "page-0505",
92739
92866
  "page-0511",
92740
92867
  "page-0514",
92741
92868
  "page-0515",
@@ -93181,6 +93308,7 @@
93181
93308
  "page-0161",
93182
93309
  "page-0166",
93183
93310
  "page-0196",
93311
+ "page-0202",
93184
93312
  "page-0203",
93185
93313
  "page-0207",
93186
93314
  "page-0213",
@@ -93368,6 +93496,7 @@
93368
93496
  "directory": [
93369
93497
  "page-0002",
93370
93498
  "page-0196",
93499
+ "page-0202",
93371
93500
  "page-0203",
93372
93501
  "page-0207",
93373
93502
  "page-1156",
@@ -93653,7 +93782,7 @@
93653
93782
  "page-0700",
93654
93783
  "page-0715",
93655
93784
  "page-0716",
93656
- "page-0784",
93785
+ "page-0785",
93657
93786
  "page-0857",
93658
93787
  "page-0957",
93659
93788
  "page-1005",
@@ -93675,6 +93804,7 @@
93675
93804
  "page-0003",
93676
93805
  "page-0083",
93677
93806
  "page-0196",
93807
+ "page-0202",
93678
93808
  "page-0207",
93679
93809
  "page-0208",
93680
93810
  "page-0496",
@@ -93692,6 +93822,7 @@
93692
93822
  "page-0196",
93693
93823
  "page-0197",
93694
93824
  "page-0198",
93825
+ "page-0202",
93695
93826
  "page-0207",
93696
93827
  "page-0208",
93697
93828
  "page-0374",
@@ -93720,8 +93851,8 @@
93720
93851
  "page-0498",
93721
93852
  "page-0499",
93722
93853
  "page-0500",
93723
- "page-0503",
93724
93854
  "page-0504",
93855
+ "page-0505",
93725
93856
  "page-0510",
93726
93857
  "page-0511",
93727
93858
  "page-0514",
@@ -93876,8 +94007,8 @@
93876
94007
  "page-0496",
93877
94008
  "page-0499",
93878
94009
  "page-0500",
93879
- "page-0504",
93880
- "page-0506",
94010
+ "page-0505",
94011
+ "page-0507",
93881
94012
  "page-0526",
93882
94013
  "page-0534",
93883
94014
  "page-0634",
@@ -94084,13 +94215,13 @@
94084
94215
  "page-0733",
94085
94216
  "page-0736",
94086
94217
  "page-0745",
94087
- "page-0753",
94088
- "page-0762",
94218
+ "page-0752",
94219
+ "page-0763",
94089
94220
  "page-0766",
94090
94221
  "page-0767",
94091
94222
  "page-0769",
94092
94223
  "page-0778",
94093
- "page-0786",
94224
+ "page-0787",
94094
94225
  "page-0788",
94095
94226
  "page-0789",
94096
94227
  "page-0791",
@@ -94140,6 +94271,7 @@
94140
94271
  ],
94141
94272
  "default": [
94142
94273
  "page-0003",
94274
+ "page-0202",
94143
94275
  "page-0203",
94144
94276
  "page-0207",
94145
94277
  "page-0219",
@@ -94177,6 +94309,7 @@
94177
94309
  "page-0196",
94178
94310
  "page-0200",
94179
94311
  "page-0201",
94312
+ "page-0202",
94180
94313
  "page-0203",
94181
94314
  "page-0205",
94182
94315
  "page-0207",
@@ -94184,8 +94317,8 @@
94184
94317
  "page-0209",
94185
94318
  "page-0224",
94186
94319
  "page-0431",
94187
- "page-0505",
94188
94320
  "page-0506",
94321
+ "page-0507",
94189
94322
  "page-0527",
94190
94323
  "page-0536",
94191
94324
  "page-0647",
@@ -94491,7 +94624,7 @@
94491
94624
  "page-0861",
94492
94625
  "page-0862",
94493
94626
  "page-0863",
94494
- "page-0865",
94627
+ "page-0864",
94495
94628
  "page-0866",
94496
94629
  "page-0867",
94497
94630
  "page-0868",
@@ -94664,7 +94797,7 @@
94664
94797
  "oauth": [
94665
94798
  "page-0003",
94666
94799
  "page-0166",
94667
- "page-0504",
94800
+ "page-0505",
94668
94801
  "page-0778",
94669
94802
  "page-0935",
94670
94803
  "page-0952",
@@ -94778,6 +94911,7 @@
94778
94911
  "page-0159",
94779
94912
  "page-0200",
94780
94913
  "page-0201",
94914
+ "page-0202",
94781
94915
  "page-0205",
94782
94916
  "page-0207",
94783
94917
  "page-0544",
@@ -94856,11 +94990,12 @@
94856
94990
  "page-0093",
94857
94991
  "page-0134",
94858
94992
  "page-0155",
94993
+ "page-0202",
94859
94994
  "page-0203",
94860
94995
  "page-0207",
94861
94996
  "page-0209",
94862
- "page-0504",
94863
94997
  "page-0505",
94998
+ "page-0506",
94864
94999
  "page-0536",
94865
95000
  "page-0678",
94866
95001
  "page-1029",
@@ -94936,7 +95071,7 @@
94936
95071
  "page-0051",
94937
95072
  "page-0674",
94938
95073
  "page-0701",
94939
- "page-0784",
95074
+ "page-0785",
94940
95075
  "page-1166",
94941
95076
  "page-1182",
94942
95077
  "page-1183",
@@ -94965,6 +95100,7 @@
94965
95100
  "page-0162",
94966
95101
  "page-0166",
94967
95102
  "page-0196",
95103
+ "page-0202",
94968
95104
  "page-0203",
94969
95105
  "page-0204",
94970
95106
  "page-0207",
@@ -95121,7 +95257,7 @@
95121
95257
  "page-0493",
95122
95258
  "page-0495",
95123
95259
  "page-0496",
95124
- "page-0503",
95260
+ "page-0504",
95125
95261
  "page-0510",
95126
95262
  "page-0516",
95127
95263
  "page-0521",
@@ -95345,7 +95481,7 @@
95345
95481
  "share": [
95346
95482
  "page-0005",
95347
95483
  "page-0148",
95348
- "page-0506",
95484
+ "page-0507",
95349
95485
  "page-0508",
95350
95486
  "page-0898",
95351
95487
  "page-1202",
@@ -96697,6 +96833,7 @@
96697
96833
  "page-0171",
96698
96834
  "page-0200",
96699
96835
  "page-0201",
96836
+ "page-0202",
96700
96837
  "page-0205",
96701
96838
  "page-0206",
96702
96839
  "page-0207",
@@ -96780,6 +96917,7 @@
96780
96917
  "page-0007",
96781
96918
  "page-0013",
96782
96919
  "page-0196",
96920
+ "page-0202",
96783
96921
  "page-0207",
96784
96922
  "page-0208",
96785
96923
  "page-1151",
@@ -96810,7 +96948,7 @@
96810
96948
  ],
96811
96949
  "move": [
96812
96950
  "page-0008",
96813
- "page-0506",
96951
+ "page-0507",
96814
96952
  "page-0647",
96815
96953
  "page-1232"
96816
96954
  ],
@@ -96921,7 +97059,7 @@
96921
97059
  "page-0381",
96922
97060
  "page-0468",
96923
97061
  "page-0493",
96924
- "page-0506",
97062
+ "page-0507",
96925
97063
  "page-0528",
96926
97064
  "page-0529",
96927
97065
  "page-0530",
@@ -96978,6 +97116,7 @@
96978
97116
  "page-0150",
96979
97117
  "page-0200",
96980
97118
  "page-0201",
97119
+ "page-0202",
96981
97120
  "page-0204",
96982
97121
  "page-0205",
96983
97122
  "page-0206",
@@ -97303,7 +97442,7 @@
97303
97442
  "page-0061",
97304
97443
  "page-0198",
97305
97444
  "page-0208",
97306
- "page-0506",
97445
+ "page-0503",
97307
97446
  "page-0507",
97308
97447
  "page-0509",
97309
97448
  "page-0513",
@@ -97389,7 +97528,7 @@
97389
97528
  "page-0013",
97390
97529
  "page-0170",
97391
97530
  "page-0377",
97392
- "page-0505",
97531
+ "page-0506",
97393
97532
  "page-0508",
97394
97533
  "page-0671",
97395
97534
  "page-1231"
@@ -97410,6 +97549,7 @@
97410
97549
  "page-0013",
97411
97550
  "page-0024",
97412
97551
  "page-0196",
97552
+ "page-0202",
97413
97553
  "page-0207",
97414
97554
  "page-0208",
97415
97555
  "page-0664",
@@ -97450,6 +97590,7 @@
97450
97590
  "page-0013",
97451
97591
  "page-0158",
97452
97592
  "page-0187",
97593
+ "page-0202",
97453
97594
  "page-0203",
97454
97595
  "page-0204",
97455
97596
  "page-0207",
@@ -97488,7 +97629,7 @@
97488
97629
  "page-0321",
97489
97630
  "page-0322",
97490
97631
  "page-0471",
97491
- "page-0504",
97632
+ "page-0505",
97492
97633
  "page-0529",
97493
97634
  "page-0530",
97494
97635
  "page-0582",
@@ -97628,6 +97769,7 @@
97628
97769
  ],
97629
97770
  "volumes": [
97630
97771
  "page-0013",
97772
+ "page-0202",
97631
97773
  "page-0546"
97632
97774
  ],
97633
97775
  "personal": [
@@ -97882,7 +98024,7 @@
97882
98024
  "page-0491",
97883
98025
  "page-0493",
97884
98026
  "page-0495",
97885
- "page-0503",
98027
+ "page-0504",
97886
98028
  "page-0510",
97887
98029
  "page-0516",
97888
98030
  "page-0521",
@@ -98188,7 +98330,7 @@
98188
98330
  "page-0491",
98189
98331
  "page-0493",
98190
98332
  "page-0495",
98191
- "page-0503",
98333
+ "page-0504",
98192
98334
  "page-0510",
98193
98335
  "page-0516",
98194
98336
  "page-0521",
@@ -98308,6 +98450,7 @@
98308
98450
  "page-0015",
98309
98451
  "page-0021",
98310
98452
  "page-0201",
98453
+ "page-0202",
98311
98454
  "page-0207",
98312
98455
  "page-0208",
98313
98456
  "page-1021",
@@ -98331,6 +98474,7 @@
98331
98474
  "page-0166",
98332
98475
  "page-0200",
98333
98476
  "page-0201",
98477
+ "page-0202",
98334
98478
  "page-0203",
98335
98479
  "page-0204",
98336
98480
  "page-0205",
@@ -98342,7 +98486,7 @@
98342
98486
  "page-0491",
98343
98487
  "page-0497",
98344
98488
  "page-0498",
98345
- "page-0506",
98489
+ "page-0503",
98346
98490
  "page-0507",
98347
98491
  "page-0508",
98348
98492
  "page-0509",
@@ -99881,7 +100025,7 @@
99881
100025
  "page-0493",
99882
100026
  "page-0495",
99883
100027
  "page-0501",
99884
- "page-0503",
100028
+ "page-0504",
99885
100029
  "page-0510",
99886
100030
  "page-0514",
99887
100031
  "page-0516",
@@ -100119,13 +100263,13 @@
100119
100263
  "page-0740",
100120
100264
  "page-0746",
100121
100265
  "page-0748",
100122
- "page-0753",
100266
+ "page-0752",
100123
100267
  "page-0759",
100124
- "page-0762",
100125
- "page-0765",
100268
+ "page-0761",
100269
+ "page-0763",
100126
100270
  "page-0776",
100127
100271
  "page-0778",
100128
- "page-0784",
100272
+ "page-0785",
100129
100273
  "page-0788",
100130
100274
  "page-0789",
100131
100275
  "page-0797",
@@ -100212,16 +100356,16 @@
100212
100356
  "page-0744",
100213
100357
  "page-0745",
100214
100358
  "page-0746",
100215
- "page-0753",
100359
+ "page-0752",
100216
100360
  "page-0757",
100217
- "page-0762",
100218
- "page-0764",
100361
+ "page-0763",
100362
+ "page-0765",
100219
100363
  "page-0766",
100220
100364
  "page-0767",
100221
100365
  "page-0769",
100222
100366
  "page-0770",
100223
100367
  "page-0778",
100224
- "page-0786",
100368
+ "page-0787",
100225
100369
  "page-0788",
100226
100370
  "page-0789",
100227
100371
  "page-0791",
@@ -100242,7 +100386,7 @@
100242
100386
  "page-0849",
100243
100387
  "page-0850",
100244
100388
  "page-0859",
100245
- "page-0867",
100389
+ "page-0864",
100246
100390
  "page-0868",
100247
100391
  "page-0869",
100248
100392
  "page-0871",
@@ -100404,8 +100548,9 @@
100404
100548
  ],
100405
100549
  "folders": [
100406
100550
  "page-0018",
100551
+ "page-0202",
100407
100552
  "page-0207",
100408
- "page-0505",
100553
+ "page-0506",
100409
100554
  "page-1205"
100410
100555
  ],
100411
100556
  "examples": [
@@ -100674,7 +100819,7 @@
100674
100819
  "page-0493",
100675
100820
  "page-0495",
100676
100821
  "page-0501",
100677
- "page-0503",
100822
+ "page-0504",
100678
100823
  "page-0510",
100679
100824
  "page-0514",
100680
100825
  "page-0516",
@@ -101002,6 +101147,7 @@
101002
101147
  "page-0158",
101003
101148
  "page-0170",
101004
101149
  "page-0193",
101150
+ "page-0202",
101005
101151
  "page-0203",
101006
101152
  "page-0208",
101007
101153
  "page-0221",
@@ -101204,6 +101350,7 @@
101204
101350
  "page-0076",
101205
101351
  "page-0078",
101206
101352
  "page-0090",
101353
+ "page-0202",
101207
101354
  "page-0207",
101208
101355
  "page-0661",
101209
101356
  "page-0662",
@@ -101243,6 +101390,7 @@
101243
101390
  "page-0197",
101244
101391
  "page-0200",
101245
101392
  "page-0201",
101393
+ "page-0202",
101246
101394
  "page-0203",
101247
101395
  "page-0205",
101248
101396
  "page-0206",
@@ -101261,6 +101409,7 @@
101261
101409
  "page-0197",
101262
101410
  "page-0200",
101263
101411
  "page-0201",
101412
+ "page-0202",
101264
101413
  "page-0203",
101265
101414
  "page-0205",
101266
101415
  "page-0206",
@@ -101447,8 +101596,8 @@
101447
101596
  "page-0498",
101448
101597
  "page-0499",
101449
101598
  "page-0500",
101450
- "page-0503",
101451
101599
  "page-0504",
101600
+ "page-0505",
101452
101601
  "page-0510",
101453
101602
  "page-0511",
101454
101603
  "page-0514",
@@ -101676,7 +101825,7 @@
101676
101825
  ],
101677
101826
  "search": [
101678
101827
  "page-0037",
101679
- "page-0505",
101828
+ "page-0506",
101680
101829
  "page-0548",
101681
101830
  "page-0558",
101682
101831
  "page-0669",
@@ -102034,7 +102183,7 @@
102034
102183
  "page-0498",
102035
102184
  "page-0499",
102036
102185
  "page-0500",
102037
- "page-0506",
102186
+ "page-0503",
102038
102187
  "page-0507",
102039
102188
  "page-0508",
102040
102189
  "page-0509",
@@ -102375,7 +102524,7 @@
102375
102524
  "page-0491",
102376
102525
  "page-0493",
102377
102526
  "page-0495",
102378
- "page-0503",
102527
+ "page-0504",
102379
102528
  "page-0510",
102380
102529
  "page-0516",
102381
102530
  "page-0521",
@@ -102517,7 +102666,7 @@
102517
102666
  "page-0861",
102518
102667
  "page-0862",
102519
102668
  "page-0863",
102520
- "page-0865",
102669
+ "page-0864",
102521
102670
  "page-0866",
102522
102671
  "page-0867",
102523
102672
  "page-0868",
@@ -102835,7 +102984,7 @@
102835
102984
  "page-0861",
102836
102985
  "page-0862",
102837
102986
  "page-0863",
102838
- "page-0865",
102987
+ "page-0864",
102839
102988
  "page-0866",
102840
102989
  "page-0867",
102841
102990
  "page-0868",
@@ -103065,7 +103214,7 @@
103065
103214
  "page-0709",
103066
103215
  "page-0715",
103067
103216
  "page-0716",
103068
- "page-0784",
103217
+ "page-0785",
103069
103218
  "page-0861",
103070
103219
  "page-1159",
103071
103220
  "page-1169",
@@ -103175,7 +103324,7 @@
103175
103324
  ],
103176
103325
  "recent": [
103177
103326
  "page-0059",
103178
- "page-0504"
103327
+ "page-0505"
103179
103328
  ],
103180
103329
  "run)": [
103181
103330
  "page-0059"
@@ -103295,7 +103444,7 @@
103295
103444
  "page-0085",
103296
103445
  "page-0095",
103297
103446
  "page-0208",
103298
- "page-0504",
103447
+ "page-0505",
103299
103448
  "page-1027",
103300
103449
  "page-1028",
103301
103450
  "page-1245",
@@ -103430,6 +103579,7 @@
103430
103579
  "navigate": [
103431
103580
  "page-0068",
103432
103581
  "page-0196",
103582
+ "page-0202",
103433
103583
  "page-0207"
103434
103584
  ],
103435
103585
  "body": [
@@ -103851,7 +104001,7 @@
103851
104001
  "page-0748",
103852
104002
  "page-0749",
103853
104003
  "page-0750",
103854
- "page-0752",
104004
+ "page-0751",
103855
104005
  "page-0754",
103856
104006
  "page-0755",
103857
104007
  "page-0756",
@@ -103860,7 +104010,7 @@
103860
104010
  "page-0759",
103861
104011
  "page-0760",
103862
104012
  "page-0761",
103863
- "page-0763",
104013
+ "page-0762",
103864
104014
  "page-0764",
103865
104015
  "page-0765",
103866
104016
  "page-0766",
@@ -103880,9 +104030,9 @@
103880
104030
  "page-0781",
103881
104031
  "page-0782",
103882
104032
  "page-0783",
103883
- "page-0784",
103884
104033
  "page-0785",
103885
104034
  "page-0786",
104035
+ "page-0787",
103886
104036
  "page-0788",
103887
104037
  "page-0790",
103888
104038
  "page-0791",
@@ -105164,7 +105314,7 @@
105164
105314
  "page-0498",
105165
105315
  "page-0499",
105166
105316
  "page-0500",
105167
- "page-0507",
105317
+ "page-0503",
105168
105318
  "page-0509",
105169
105319
  "page-0534",
105170
105320
  "page-0548",
@@ -105306,7 +105456,7 @@
105306
105456
  "page-0208",
105307
105457
  "page-0368",
105308
105458
  "page-0496",
105309
- "page-0504",
105459
+ "page-0505",
105310
105460
  "page-0542",
105311
105461
  "page-0561",
105312
105462
  "page-0569",
@@ -105334,6 +105484,7 @@
105334
105484
  "stop": [
105335
105485
  "page-0141",
105336
105486
  "page-0196",
105487
+ "page-0202",
105337
105488
  "page-0207",
105338
105489
  "page-0208",
105339
105490
  "page-0593",
@@ -105453,7 +105604,7 @@
105453
105604
  "page-0652",
105454
105605
  "page-0683",
105455
105606
  "page-0863",
105456
- "page-0867",
105607
+ "page-0864",
105457
105608
  "page-1034",
105458
105609
  "page-1035",
105459
105610
  "page-1036",
@@ -105597,7 +105748,7 @@
105597
105748
  ],
105598
105749
  "event": [
105599
105750
  "page-0153",
105600
- "page-0507",
105751
+ "page-0503",
105601
105752
  "page-1142",
105602
105753
  "page-1144"
105603
105754
  ],
@@ -105660,6 +105811,7 @@
105660
105811
  "page-0161",
105661
105812
  "page-0166",
105662
105813
  "page-0196",
105814
+ "page-0202",
105663
105815
  "page-0203",
105664
105816
  "page-0207",
105665
105817
  "page-0213"
@@ -105758,6 +105910,7 @@
105758
105910
  "container": [
105759
105911
  "page-0157",
105760
105912
  "page-0196",
105913
+ "page-0202",
105761
105914
  "page-0207",
105762
105915
  "page-0515",
105763
105916
  "page-0632",
@@ -106175,6 +106328,7 @@
106175
106328
  ],
106176
106329
  "latest": [
106177
106330
  "page-0196",
106331
+ "page-0202",
106178
106332
  "page-0207",
106179
106333
  "page-1151",
106180
106334
  "page-1152"
@@ -106193,10 +106347,12 @@
106193
106347
  ],
106194
106348
  "containing": [
106195
106349
  "page-0196",
106350
+ "page-0202",
106196
106351
  "page-0207"
106197
106352
  ],
106198
106353
  "older": [
106199
106354
  "page-0196",
106355
+ "page-0202",
106200
106356
  "page-0207"
106201
106357
  ],
106202
106358
  "stack": [
@@ -106244,7 +106400,7 @@
106244
106400
  "page-0499",
106245
106401
  "page-0500",
106246
106402
  "page-0502",
106247
- "page-0505",
106403
+ "page-0503",
106248
106404
  "page-0506",
106249
106405
  "page-0507",
106250
106406
  "page-0508",
@@ -106364,6 +106520,7 @@
106364
106520
  "clone": [
106365
106521
  "page-0200",
106366
106522
  "page-0201",
106523
+ "page-0202",
106367
106524
  "page-0205",
106368
106525
  "page-0207",
106369
106526
  "page-0664"
@@ -106371,6 +106528,7 @@
106371
106528
  "repository": [
106372
106529
  "page-0200",
106373
106530
  "page-0201",
106531
+ "page-0202",
106374
106532
  "page-0205",
106375
106533
  "page-0207",
106376
106534
  "page-1204",
@@ -106429,6 +106587,28 @@
106429
106587
  "page-0201",
106430
106588
  "page-0205"
106431
106589
  ],
106590
+ "digital": [
106591
+ "page-0202"
106592
+ ],
106593
+ "ocean": [
106594
+ "page-0202"
106595
+ ],
106596
+ "digitalocean": [
106597
+ "page-0202",
106598
+ "page-0942"
106599
+ ],
106600
+ "droplet": [
106601
+ "page-0202"
106602
+ ],
106603
+ "ports": [
106604
+ "page-0202",
106605
+ "page-0206",
106606
+ "page-0207"
106607
+ ],
106608
+ "caddy": [
106609
+ "page-0202",
106610
+ "page-0207"
106611
+ ],
106432
106612
  "register": [
106433
106613
  "page-0203",
106434
106614
  "page-0739",
@@ -106623,16 +106803,9 @@
106623
106803
  "dockerfile": [
106624
106804
  "page-0206"
106625
106805
  ],
106626
- "ports": [
106627
- "page-0206",
106628
- "page-0207"
106629
- ],
106630
106806
  "hetzner": [
106631
106807
  "page-0207"
106632
106808
  ],
106633
- "caddy": [
106634
- "page-0207"
106635
- ],
106636
106809
  "openshift": [
106637
106810
  "page-0208"
106638
106811
  ],
@@ -106927,7 +107100,7 @@
106927
107100
  ],
106928
107101
  "copy": [
106929
107102
  "page-0208",
106930
- "page-0506",
107103
+ "page-0507",
106931
107104
  "page-1170",
106932
107105
  "page-1215",
106933
107106
  "page-1242",
@@ -107250,7 +107423,7 @@
107250
107423
  ],
107251
107424
  "verified": [
107252
107425
  "page-0223",
107253
- "page-0504",
107426
+ "page-0505",
107254
107427
  "page-1027",
107255
107428
  "page-1028",
107256
107429
  "page-1153",
@@ -107615,7 +107788,7 @@
107615
107788
  "page-0501",
107616
107789
  "page-0502",
107617
107790
  "page-0503",
107618
- "page-0505",
107791
+ "page-0504",
107619
107792
  "page-0506",
107620
107793
  "page-0507",
107621
107794
  "page-0508",
@@ -107905,7 +108078,7 @@
107905
108078
  "page-0491",
107906
108079
  "page-0493",
107907
108080
  "page-0495",
107908
- "page-0503",
108081
+ "page-0504",
107909
108082
  "page-0510",
107910
108083
  "page-0516",
107911
108084
  "page-0521",
@@ -108068,7 +108241,7 @@
108068
108241
  ],
108069
108242
  "bubble": [
108070
108243
  "page-0270",
108071
- "page-0751"
108244
+ "page-0753"
108072
108245
  ],
108073
108246
  "chargebee": [
108074
108247
  "page-0271",
@@ -108081,7 +108254,7 @@
108081
108254
  ],
108082
108255
  "webex": [
108083
108256
  "page-0273",
108084
- "page-0765",
108257
+ "page-0761",
108085
108258
  "page-1053"
108086
108259
  ],
108087
108260
  "cisco": [
@@ -108089,26 +108262,26 @@
108089
108262
  "page-0758",
108090
108263
  "page-0759",
108091
108264
  "page-0760",
108092
- "page-0765",
108265
+ "page-0761",
108093
108266
  "page-1053"
108094
108267
  ],
108095
108268
  "clearbit": [
108096
108269
  "page-0274",
108097
- "page-0761"
108270
+ "page-0762"
108098
108271
  ],
108099
108272
  "clickup": [
108100
108273
  "page-0275",
108101
- "page-0762",
108274
+ "page-0763",
108102
108275
  "page-1054"
108103
108276
  ],
108104
108277
  "clockify": [
108105
108278
  "page-0276",
108106
- "page-0763",
108279
+ "page-0764",
108107
108280
  "page-1055"
108108
108281
  ],
108109
108282
  "cloudflare": [
108110
108283
  "page-0277",
108111
- "page-0764",
108284
+ "page-0765",
108112
108285
  "page-1204"
108113
108286
  ],
108114
108287
  "cockpit": [
@@ -108169,11 +108342,11 @@
108169
108342
  ],
108170
108343
  "discourse": [
108171
108344
  "page-0292",
108172
- "page-0785"
108345
+ "page-0786"
108173
108346
  ],
108174
108347
  "disqus": [
108175
108348
  "page-0293",
108176
- "page-0786"
108349
+ "page-0787"
108177
108350
  ],
108178
108351
  "drift": [
108179
108352
  "page-0294",
@@ -108487,16 +108660,16 @@
108487
108660
  ],
108488
108661
  "mailjet": [
108489
108662
  "page-0364",
108490
- "page-0867",
108663
+ "page-0864",
108491
108664
  "page-1086"
108492
108665
  ],
108493
108666
  "mandrill": [
108494
108667
  "page-0365",
108495
- "page-0865"
108668
+ "page-0866"
108496
108669
  ],
108497
108670
  "marketstack": [
108498
108671
  "page-0366",
108499
- "page-0866"
108672
+ "page-0867"
108500
108673
  ],
108501
108674
  "matrix": [
108502
108675
  "page-0367",
@@ -109111,7 +109284,7 @@
109111
109284
  "discord": [
109112
109285
  "page-0493",
109113
109286
  "page-0494",
109114
- "page-0784",
109287
+ "page-0785",
109115
109288
  "page-1205"
109116
109289
  ],
109117
109290
  "embeds": [
@@ -109155,7 +109328,7 @@
109155
109328
  ],
109156
109329
  "unauthorized": [
109157
109330
  "page-0496",
109158
- "page-0504",
109331
+ "page-0505",
109159
109332
  "page-1027",
109160
109333
  "page-1028",
109161
109334
  "page-1137",
@@ -109218,7 +109391,7 @@
109218
109391
  "calendar": [
109219
109392
  "page-0501",
109220
109393
  "page-0502",
109221
- "page-0507",
109394
+ "page-0503",
109222
109395
  "page-1071"
109223
109396
  ],
109224
109397
  "availability": [
@@ -109226,10 +109399,10 @@
109226
109399
  "page-1205"
109227
109400
  ],
109228
109401
  "drive": [
109229
- "page-0503",
109230
109402
  "page-0504",
109231
109403
  "page-0505",
109232
109404
  "page-0506",
109405
+ "page-0507",
109233
109406
  "page-0508",
109234
109407
  "page-0509",
109235
109408
  "page-1029",
@@ -109237,17 +109410,17 @@
109237
109410
  "page-1140"
109238
109411
  ],
109239
109412
  "hasn't": [
109240
- "page-0504",
109413
+ "page-0505",
109241
109414
  "page-1027",
109242
109415
  "page-1028"
109243
109416
  ],
109244
109417
  "becoming": [
109245
- "page-0504",
109418
+ "page-0505",
109246
109419
  "page-1027",
109247
109420
  "page-1028"
109248
109421
  ],
109249
109422
  "download": [
109250
- "page-0506",
109423
+ "page-0507",
109251
109424
  "page-0652",
109252
109425
  "page-0663",
109253
109426
  "page-0689",
@@ -109255,7 +109428,7 @@
109255
109428
  "page-1196"
109256
109429
  ],
109257
109430
  "upload": [
109258
- "page-0506",
109431
+ "page-0507",
109259
109432
  "page-0536",
109260
109433
  "page-0663",
109261
109434
  "page-0689"
@@ -110918,7 +111091,7 @@
110918
111091
  "page-1047"
110919
111092
  ],
110920
111093
  "calendly": [
110921
- "page-0753",
111094
+ "page-0752",
110922
111095
  "page-1050"
110923
111096
  ],
110924
111097
  "carbon": [
@@ -111084,7 +111257,7 @@
111084
111257
  "page-0863"
111085
111258
  ],
111086
111259
  "malcore": [
111087
- "page-0864"
111260
+ "page-0865"
111088
111261
  ],
111089
111262
  "(general)": [
111090
111263
  "page-0874"
@@ -111165,9 +111338,6 @@
111165
111338
  "future": [
111166
111339
  "page-0937"
111167
111340
  ],
111168
- "digitalocean": [
111169
- "page-0942"
111170
- ],
111171
111341
  "spaces": [
111172
111342
  "page-0942"
111173
111343
  ],
@@ -113019,6 +113189,7 @@
113019
113189
  "page-0199",
113020
113190
  "page-0200",
113021
113191
  "page-0201",
113192
+ "page-0202",
113022
113193
  "page-0203",
113023
113194
  "page-0204",
113024
113195
  "page-0205",
@@ -114377,13 +114548,13 @@
114377
114548
  "googlecalendar": [
114378
114549
  "page-0501",
114379
114550
  "page-0502",
114380
- "page-0507"
114551
+ "page-0503"
114381
114552
  ],
114382
114553
  "googledrive": [
114383
- "page-0503",
114384
114554
  "page-0504",
114385
114555
  "page-0505",
114386
114556
  "page-0506",
114557
+ "page-0507",
114387
114558
  "page-0508",
114388
114559
  "page-0509"
114389
114560
  ],