--- title: 'Zoom' description: 'Manage meetings, webinars, and users with the Zoom API. Schedule meetings, manage participants, and access recordings.' --- # Zoom Manage meetings, webinars, and users with the Zoom API. Schedule meetings, manage participants, and access recordings. | Detail | Value | |---|---| | Category | Communication | | Base URL | `https://api.zoom.us/v2` | | Authentication | OAuth2 | | Endpoints | 7 | | Connector key | `zoom` | ## Using Zoom in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **Zoom** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [GET /users](./get_users_comm_listusers) | List users | | [GET /users/{userId}](./get_users_userid_comm_getuser) | Get a user | | [POST /users/{userId}/meetings](./post_users_userid_meetings_comm_createmeeting) | Create a meeting | | [GET /users/{userId}/meetings](./get_users_userid_meetings_comm_listmeetings) | List meetings for a user | | [GET /meetings/{meetingId}](./get_meetings_meetingid_comm_getmeeting) | Get meeting details | | [DELETE /meetings/{meetingId}](./delete_meetings_meetingid_comm_deletemeeting) | Delete a meeting | | [GET /meetings/{meetingId}/recordings](./get_meetings_meetingid_recordings_comm_getrecordings) | Get meeting recordings | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.