You can find your Zoom application credentials by visiting your Zoom developer dashboard.You’ll need the following information to set up your Zoom App with Paragon Connect:
Under Integrations > Connected Integrations >Zoom>Settings, fill out your credentials from the end of Step 1 in their respective sections:
Client ID: Found under App Credentials > Client ID on your Zoom App page.
Client Secret: Found under App Credentials > Client secret on your Zoom App page.
Permissions: Select the scopes you’ve requested for your application. For a list of recommended scopes, please view this integration within your Paragon dashboard. View dashboard. You must add users:read in your Zoom and Paragon dashboard.
Press the blue “Save Changes” button to save your credentials.
Note: You should only indicate the scopes you have requested in your Zoom application registration to Paragon. They should match exactly.
Once your users have connected their Zoom account, you can use the Paragon SDK to access the Zoom API on behalf of connected users.See the Zoom REST API documentation for their full API reference.Any Zoom API endpoints can be accessed with the Paragon SDK as shown in this example.
Copy
Ask AI
// You can find your project ID in the Overview tab of any Integration// Authenticate the userparagon.authenticate(<ProjectId>, <UserToken>);// Create a Meetingparagon.request("zoom", "users/me/meetings", { method: "POST", body: { "topic": "Product Demo Webinar" }});//Get Meetingsparagon.request("zoom", "users/me/meetings", { method: "GET",});
Webhook triggers can be used to run workflows based on events in your users’ Zoom account. Paragon provides a webhook URL to listen for updates from Zoom to send information to your app. To add the webhook URL to your Zoom app registration and complete its verification, perform the following: