Video conferencing (includes account-level scopes) for Zoom Admins.
Emits an event each time a sub-account is created in your master account
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
Emits an event each time a recording is ready for viewing in your Zoom account
Provide Full name of your prospect with Domain or Website and Api will provide you an email address of the prospect in response. See the documentation.
Use this Api when you want to know the status of any previous find-email Api request. See the documentation.
The Api verifies your requested email address, whether it is a Good or Bad email address. See the documentation.
Register a participant for a meeting. 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 GetEmails API provides a means to identify anonymous traffic on your website and retrieve contact information for remarketing purposes. With this API integrated into Pipedream workflows, you can automate the process of capturing leads, enriching customer profiles, and triggering personalized communication. Pipedream’s serverless platform allows you to connect GetEmails to a vast array of services, enabling seamless data flow between lead capture and your marketing or CRM tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
getemails: {
type: "app",
app: "getemails",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.getemail.io/v2/verif-email`,
params: {
api_key: `${this.getemails.$auth.api_key}`,
email: `satyan@microsoft.com`,
},
})
},
})