Video conferencing (includes account-level scopes) for Zoom Admins.
Emits an event each time a sub-account is created in your master account
Emit new event when a new template is created within your PublisherKit account. See the documentation
Emits an event each time a meeting starts in your Zoom account
Emits an event each time your master account or sub-account profile is updated
Generates a new image within PublisherKit. See the documentation
Register a participant for a meeting. See the docs here
Register a participant for a webinar. See the docs here
The Zoom Admin API lets you harness the extensive capabilities of Zoom for automation and integration, right within Pipedream. Automate user management, track Zoom rooms, monitor webinars and meetings, and customize your workflow to respond dynamically to events like new participants or ended meetings. With these APIs and the power of Pipedream, you can streamline administrative tasks, extract valuable insights, and sync Zoom activities with other services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoom_admin: {
type: "app",
app: "zoom_admin",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.zoom.us/v2/users/me`,
headers: {
Authorization: `Bearer ${this.zoom_admin.$auth.oauth_access_token}`,
},
})
},
})
The PublisherKit API offers a suite of tools for digital content management, including the ability to manage and distribute various multimedia content like articles, videos, and podcasts. Integrating this API with Pipedream allows you to automate content workflows, sync data across platforms, and react to events in real-time. For instance, you could automatically publish scheduled content, analyze content performance, or update cross-platform content statuses.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
publisherkit: {
type: "app",
app: "publisherkit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.publisherkit.com/v1/auth`,
headers: {
Authorization: `Bearer ${this.publisherkit.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})