Zoom - Creating Meeting
@sergio
code:
data:privatelast updated:4 years ago
today
Build integrations remarkably fast!
You're viewing a public workflow template.
Sign up to customize, add steps, modify code and more.
Join 1,000,000+ developers using the Pipedream platform
steps.
trigger
HTTP API
Deploy to generate unique URL
This workflow runs on Pipedream's servers and is triggered by HTTP / Webhook requests.
steps.
zoom_create_meeting
Creates a meeting for a user. A maximum of 100 meetings can be created for a user in a day.
auth
(auths.zoom)
params
User id

ID of the user creating the meeting.

 
string ·params.user_id
Optional
code
async (params, auths) => {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
}
25
//See the API docs here: https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingcreate
const config = {
  method: "post",
  url: `https://api.zoom.us/v2/users/${params.user_id}/meetings`,
  data: {
    topic: params.topic,
    type: params.type,
    start_time: params.start_time,
    duration: params.duration,
    timezone: params.timezone,
    password: params.password,
    agenda: params.agenda,
    tracking_fields: typeof params.tracking_fields == 'undefined' ? params.tracking_fields : JSON.parse(params.tracking_fields),
    recurrence: typeof params.recurrence == 'undefined' ? params.recurrence : JSON.parse(params.recurrence),
    settings: typeof params.settings == 'undefined' ? params.settings : JSON.parse(params.settings),
    },
  headers: {
    Authorization: `Bearer ${auths.zoom.oauth_access_token}`,    
    "Content-Type": "application/json"
  }
}
return await require("@pipedreamhq/platform").axios(this, config)