Any Zoom API endpoints can be accessed with the Paragon SDK as shown in this example.
1
// You can find your project ID in the Overview tab of any Integration
2
3
// Authenticate the user
4
paragon.authenticate(<ProjectId>,<UserToken>);
5
6
// Create a Meeting
7
paragon.request("zoom","users/me/meetings",{
8
method:"POST",
9
body:{"topic":"Product Demo Webinar"}
10
});
11
12
13
//Get Meetings
14
paragon.request("zoom","users/me/meetings",{
15
method:"GET",
16
});
Copied!
Building Zoom workflows
Once your Zoom account is connected, you can add steps to perform the following actions:
Create Meeting
Update Meeting
Get Meeting
Get Meeting by ID
Delete Meeting
Add Meeting Registrant
Get Meeting Registrants
Delete Meeting Registrant
When creating or updating meetings in Zoom, you can reference data from previous steps by typing {{ to invoke the variable menu.
Using Webhook Triggers
Paragon provides a webhook URL to send information to your app. To add the webhook URL to your Zoom app:
Webhook triggers can be used to run workflows based on events in your users' Zoom account. For example, you might want to trigger a workflow whenever new meetings are created in Zoom to sync your users' Zoom meetings to your application in real-time.
1. Copy the link under "Webhook URL" in your integration settings in Paragon. The webhook URL is: