Meeting topic
async
(params, auths) => {
}
//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/me/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)