Skip to main content

Automate Zoom 🎦 user onboarding with OAuth token management and data tables

Workflow preview

Workflow preview
100%
Automate Zoom 🎦 user onboarding with OAuth token management and data tables preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

This workflow automates the management of Zoom OAuth tokens and the creation of new Zoom users through the Zoom API. This workflow automates the process of creating a new Zoom user by first ensurin...

Best for

  • HR automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.manualtrigger, n8n-nodes-base.datatable, n8n-nodes-base.sort, n8n-nodes-base.limit, n8n-nodes-base.if, n8n-nodes-base.stickynote, n8n-nodes-base.merge, n8n-nodes-base.httprequest

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Davide.

Original n8n.io source

1.1 Workflow description

Title
Automate Zoom 🎦 user onboarding with OAuth token management and data tables
Workflow name
Automate Zoom 🎦 user onboarding with OAuth token management and data tables

This workflow automates the management of Zoom OAuth tokens and the creation of new Zoom users through the Zoom API.

This workflow automates the process of creating a new Zoom user by first ensuring a valid OAuth access token is available. It is designed to handle the fact that Zoom access tokens are short-lived (1 hour) by using a longer-lived refresh token (90 days) stored in an n8n Data Table.

It includes two main phases:

  1. Token Generation & Management

    • The workflow initially requests a Zoom access token using the OAuth 2.0 “authorization code” method.
    • The resulting access token (valid for 1 hour) and refresh token (valid for 90 days) are stored in an n8n Data Table.
    • When executed again, the workflow checks for the most recent token, refreshes it using the refresh token, and updates the Data Table automatically.
  2. User Creation in Zoom

    • Once a valid token is retrieved, the workflow collects the user’s first name, last name, and email (set in the “Data” node).
    • It then generates a secure random password for the new user.
    • Using the Zoom API, it sends a POST request to create the new user, automatically triggering an invitation email from Zoom.

Key Features

  1. Full Automation of Zoom Authentication

    • Eliminates manual token handling by automatically refreshing and updating OAuth credentials.
  2. Centralized Token Storage

    • Securely stores access and refresh tokens in an n8n Data Table, simplifying reuse across workflows.
  3. Error Prevention

    • Ensures that expired tokens are replaced before API requests, avoiding failed Zoom operations.

4.✅ Automatic User Provisioning

  • Creates Zoom users automatically with prefilled credentials and triggers Zoom’s built-in invitation process.
  1. Scalability

    • Can be easily extended to handle bulk user creation, role assignments, or integration with other systems (e.g., HR, CRM).
  2. Transparency & Modularity

    • Each node is clearly labeled with “Sticky Notes” explaining every step, making maintenance and handover simple.

How it works

  1. Trigger and Data Retrieval: The workflow starts manually. It first retrieves user data (first name, last name, email) from the "Data" node. In parallel, it fetches all stored token records from a Data Table.
  2. Token Management: The retrieved tokens are sorted and limited to get only the most recent one. This latest token (which contains the refresh_token) is then used in an HTTP Request to Zoom's OAuth endpoint to generate a fresh, valid access_token.
  3. User Creation: The new access_token and refresh_token are saved back to the Data Table for future use. The workflow then generates a random password for the new user, merges this password with the initial user data, and finally sends a POST request to the Zoom API to create the new user. If the creation is successful, Zoom automatically sends an invitation email to the new user.

Set up steps

  1. Prepare the Data Table:

    • Create a new Data Table in your n8n project.
    • Add two columns to it: accessToken and refreshToken.
  2. Configure Zoom OAuth App:

    • Create a standard OAuth app in the Zoom Marketplace (not a Server-to-Server app).
    • Note your Zoom account_id.
    • Encode your Zoom app's client_id and client_secret in Base64 format (as client_id:client_secret).
    • In both the "Get new token" and "Zoom First Access Token" nodes, replace the "XXX" in the Authorization header with this Base64-encoded string.
  3. Generate Initial Tokens (First Run Only):

    • Manually execute the "Zoom First Access Token" node once. This node uses an authorization code to fetch the first-ever access and refresh tokens and saves them to your Data Table. The main workflow will use these stored tokens from this point forward.
  4. Configure User Data:

    • In the "Data" node, set the default values for the new Zoom user by replacing the "XXX" placeholders for first_name, last_name, and email.

After these setup steps, the main workflow (triggered via "When clicking 'Execute workflow'") can be run whenever you need to create a new Zoom user. It will automatically refresh the token and use the provided user data to create the account.


Need help customizing?

Contact me for consulting and support or add me on Linkedin.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - When clicking ‘Execute workflow’

Type / Role
n8n-nodes-base.manualTrigger - manualTrigger
Config choices
Version 1

Block 2 - Get row(s)

Type / Role
n8n-nodes-base.dataTable - dataTable
Config choices
Version 1

Block 3 - Sort

Type / Role
n8n-nodes-base.sort - sort
Config choices
Version 1

Block 4 - Limit

Type / Role
n8n-nodes-base.limit - limit
Config choices
Version 1

Block 5 - If

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 6 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 7 - Merge

Type / Role
n8n-nodes-base.merge - merge
Config choices
Version 3.2

Block 8 - Get new token

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 9 - Insert new token

Type / Role
n8n-nodes-base.dataTable - dataTable
Config choices
Version 1

Block 10 - Create new user

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 11 - Generate random Password

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 12 - Data

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 13 - Insert token

Type / Role
n8n-nodes-base.dataTable - dataTable
Config choices
Version 1

Block 14 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 15 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 16 - Zoom First Access Token

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 17 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 18 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 19 - Sticky Note5

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 20 - Sticky Note6

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 21 - Sticky Note7

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 22 - Sticky Note8

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 23 - Sticky Note9

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 24 - Sticky Note10

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Showing the first 24 of 26 workflow blocks. Download the JSON for the full node graph.

3. Summary Table

Workflow Automate Zoom 🎦 user onboarding with OAuth token management and data tables
Complexity advanced
Nodes 26
Categories HR
Author Davide
Published 12 Nov 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/10747/10747.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Automate Zoom 🎦 user onboarding with OAuth token management and data tables do?

This workflow automates the management of Zoom OAuth tokens and the creation of new Zoom users through the Zoom API. This workflow automates the process of creating a new Zoom user by first ensurin...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your HR use case.