> ## Documentation Index
> Fetch the complete documentation index at: https://nango-wari-migrated-bigcommerce-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Zoom

> Integrate your application with the Zoom API

## 🚀 Quickstart

Connect to Zoom with Nango and see data flow in 2 minutes.

<Steps>
  <Step title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *Zoom*.
  </Step>

  <Step title="Authorize Zoom">
    Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection* -> *Authorize*, then log in to Zoom. Later, you'll let your users do the same directly from your app.
  </Step>

  <Step title="Call the Zoom API">
    Let's make your first request to the Zoom API. Replace the placeholders below with your [secret key](https://app.nango.dev/dev/environment-settings), [integration ID](https://app.nango.dev/dev/integrations), and [connection ID](https://app.nango.dev/dev/connections):

    <Tabs>
      <Tab title="cURL">
        ```bash theme={null}
        curl "https://api.nango.dev/proxy/users" \
          -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
          -H "Provider-Config-Key: <INTEGRATION-ID>" \
          -H "Connection-Id: <CONNECTION-ID>"
        ```
      </Tab>

      <Tab title="Node">
        Install Nango's backend SDK with `npm i @nangohq/node`. Then run:

        ```typescript theme={null}
        import { Nango } from '@nangohq/node';

        const nango = new Nango({ secretKey: '<NANGO-SECRET-KEY>' });

        const res = await nango.get({
            endpoint: '/users',
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>'
        });

        console.log(res.data);
        ```
      </Tab>
    </Tabs>

    Or fetch credentials with the [Node SDK](/reference/sdks/node#get-a-connection-with-credentials) or [API](/reference/api/connection/get).

    ✅ You're connected! Check the [Logs](https://app.nango.dev/dev/logs) tab in Nango to inspect requests.
  </Step>

  <Step title="Implement Nango in your app">
    Follow our [Auth implementation guide](/guides/primitives/auth) to integrate Nango in your app.

    To obtain your own production credentials, follow the setup guide linked below.
  </Step>
</Steps>

## 📚 Zoom Integration Guides

Nango maintained guides for common use cases.

* [How to register your own Zoom OAuth app](/api-integrations/zoom/how-to-register-your-own-zoom-api-oauth-app)\
  Register an OAuth app with Zoom and obtain credentials to connect it to Nango

Official docs: [Zoom API docs](https://developers.zoom.us/docs/api/)

## 🧩 Pre-built syncs & actions for Zoom

Enable them in your dashboard. Extend and customize to fit your needs.

### Others

| Function name               | Description                                     | Type                                           | Source code                                                                                                                    |
| --------------------------- | ----------------------------------------------- | ---------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------ |
| `create-meeting-registrant` | Create a meeting registrant in Zoom.            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/create-meeting-registrant.ts) |
| `create-meeting`            | Create a meeting in Zoom.                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/create-meeting.ts)            |
| `create-user`               | Create a user in Zoom                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/create-user.ts)               |
| `create-webinar`            | Create a webinar in Zoom.                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/create-webinar.ts)            |
| `delete-meeting-registrant` | Delete or archive a meeting registrant in Zoom. | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/delete-meeting-registrant.ts) |
| `delete-meeting`            | Delete or archive a meeting in Zoom.            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/delete-meeting.ts)            |
| `delete-recording`          | Delete or archive a recording in Zoom.          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/delete-recording.ts)          |
| `delete-user`               | Delete or archive a user in Zoom.               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/delete-user.ts)               |
| `delete-webinar`            | Delete or archive a webinar in Zoom.            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/delete-webinar.ts)            |
| `get-current-user`          | Fetch the authenticated Zoom user profile.      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/get-current-user.ts)          |
| `get-meeting-registrant`    | Retrieve a single meeting registrant from Zoom. | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/get-meeting-registrant.ts)    |
| `get-meeting`               | Retrieve a single meeting from Zoom.            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/get-meeting.ts)               |
| `get-recording`             | Retrieve a single recording from Zoom.          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/get-recording.ts)             |
| `get-user`                  | Retrieve a single user from Zoom.               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/get-user.ts)                  |
| `get-webinar`               | Retrieve a single webinar from Zoom.            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/get-webinar.ts)               |
| `list-meeting-registrants`  | List meeting registrants from Zoom.             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/list-meeting-registrants.ts)  |
| `list-meetings`             | List meetings from Zoom.                        | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/list-meetings.ts)             |
| `list-recordings`           | List recordings from Zoom.                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/list-recordings.ts)           |
| `list-users`                | List users from Zoom.                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/list-users.ts)                |
| `list-webinars`             | List webinars from Zoom.                        | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/list-webinars.ts)             |
| `update-meeting-registrant` | Update a meeting registrant status in Zoom.     | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/update-meeting-registrant.ts) |
| `update-meeting`            | Update a meeting in Zoom.                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/update-meeting.ts)            |
| `update-user`               | Update a user in Zoom.                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/update-user.ts)               |
| `update-webinar`            | Update a webinar in Zoom.                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/actions/update-webinar.ts)            |
| `meetings`                  | Sync meetings from Zoom.                        | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/syncs/meetings.ts)                    |
| `recordings`                | Sync recordings from Zoom.                      | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/syncs/recordings.ts)                  |
| `users`                     | Sync users from Zoom.                           | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/syncs/users.ts)                       |
| `webinars`                  | Sync webinars from Zoom.                        | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/zoom/syncs/webinars.ts)                    |

***
