Video conferencing (includes account-level scopes) for Zoom Admins.
Retrieves orders for an order batch in Goody. 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 Goody API allows for the creation of digital rewards and incentives, facilitating the sending of gift cards and other perks electronically. In Pipedream, you can harness this API to automate the distribution of rewards, integrate with CRM systems, or track and analyze the impact of your rewards program. By leveraging Pipedream’s capability to connect with numerous other platforms, you can create multifaceted workflows that trigger based on various events or conditions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
goody: {
type: "app",
app: "goody",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.goody.$auth.environment}.ongoody.com/v1/me`,
headers: {
Authorization: `Bearer ${this.goody.$auth.automation_api_key}`,
},
})
},
})