> ## Documentation Index
> Fetch the complete documentation index at: https://docs.keephq.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Zoom

> Zoom provider allows you to create meetings with Zoom.

<Tip>
  For this integration, you'll need to create a Zoom Application - for more details read [https://developers.zoom.us/docs/internal-apps](https://developers.zoom.us/docs/internal-apps)
</Tip>

<Tip>
  The `record_meeting` parameter won't work with Zoom's basic plan. With basic plan, you'll be able to connect to the meeting and enable the "recording" manually.
</Tip>

## Authentication

This provider requires authentication.

* **account\_id**: Zoom Account ID (required: True, sensitive: True)
* **client\_id**: Zoom Client ID (required: True, sensitive: True)
* **client\_secret**: Zoom Client Secret (required: True, sensitive: True)

Certain scopes may be required to perform specific actions or queries via the provider. Below is a summary of relevant scopes and their use cases:

* **create\_meeting**: Create a new Zoom meeting (mandatory)

## In workflows

This provider can be used in workflows.

As "action" to make changes or update data, example:

```yaml theme={null}
actions:
    - name: Query zoom
      provider: zoom
      config: "{{ provider.my_provider_name }}"
      with:
        topic: {value}  
        start_time: {value}  
        duration: {value}  
        timezone: {value}  
        record_meeting: {value}  
        host_email: {value}  
```

Check the following workflow examples:

* [zoom\_chat\_example.yml](https://github.com/keephq/keep/blob/main/examples/workflows/zoom_chat_example.yml)
* [zoom\_example.yml](https://github.com/keephq/keep/blob/main/examples/workflows/zoom_example.yml)

## Connecting with the Provider

### Create an Application

<Frame width="100" height="200">
  <img height="10" src="https://mintcdn.com/keep-docs/LjPasDs8HZ8u-5Qy/images/zoom1.png?fit=max&auto=format&n=LjPasDs8HZ8u-5Qy&q=85&s=634f867d5c4b489b6a54b0c890b132c4" data-path="images/zoom1.png" />
</Frame>

Keep the credentials:

<Frame width="100" height="200">
  <img height="10" src="https://mintcdn.com/keep-docs/LjPasDs8HZ8u-5Qy/images/zoom2.png?fit=max&auto=format&n=LjPasDs8HZ8u-5Qy&q=85&s=83e47608210f283f55f40a7fad1f94a3" data-path="images/zoom2.png" />
</Frame>

### Grant Scopes

<Frame width="100" height="200">
  <img height="10" src="https://mintcdn.com/keep-docs/LjPasDs8HZ8u-5Qy/images/zoom3.png?fit=max&auto=format&n=LjPasDs8HZ8u-5Qy&q=85&s=7197c75f2b87f8f86deaa859c426852b" data-path="images/zoom3.png" />
</Frame>

### Activate the app

<Frame width="100" height="200">
  <img height="10" src="https://mintcdn.com/keep-docs/LjPasDs8HZ8u-5Qy/images/zoom4.png?fit=max&auto=format&n=LjPasDs8HZ8u-5Qy&q=85&s=83d1b4fbe6033b0a963d3f99ef998069" data-path="images/zoom4.png" />
</Frame>

### (Optional) Make sure cloud recording is set on your account

<Frame width="100" height="200">
  <img height="10" src="https://mintcdn.com/keep-docs/LjPasDs8HZ8u-5Qy/images/zoom5.png?fit=max&auto=format&n=LjPasDs8HZ8u-5Qy&q=85&s=f08187540ec8da512875697c3f0dc2ec" data-path="images/zoom5.png" />
</Frame>

<Frame width="100" height="200">
  <img height="10" src="https://mintcdn.com/keep-docs/LjPasDs8HZ8u-5Qy/images/zoom6.png?fit=max&auto=format&n=LjPasDs8HZ8u-5Qy&q=85&s=7105badeb1bce9e48b6bcf2fa17bb47d" data-path="images/zoom6.png" />
</Frame>
