--- title: "Zoom" --- **Obtaining Zoom Client ID and Secret** Go to [Zoom Marketplace](https://marketplace.zoom.us/) and sign in with your Zoom account. In the upper right, click "Develop" and then "Build App". Under "OAuth", select "Create". Provide a name for your app. Select "User-managed app" as the app type. De-select the option to publish the app on the Zoom App Marketplace. Click "Create" to proceed. Copy the Client ID and Client Secret and add them to your `.env` file under the fields: ``` ZOOM_CLIENT_ID ZOOM_CLIENT_SECRET ``` Set the Redirect URL for OAuth to: ``` /api/integrations/zoomvideo/callback ``` Replace `` with your application URL. Add the redirect URL to the allow list and enable "Subdomain check". Ensure it displays "saved" below the form. You don't need to provide basic information about your app. Instead, go to "Scopes", click "+ Add Scopes", then select the category "Meeting" on the left, and check the scope `meeting:write`. Click "Done" to save the scope settings. Your Zoom integration is now ready and can be easily added in the Cal.com settings.