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 transaction is posted on the PolygonScan network for a specific address.
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
Retrieves the balance of a specific address within the Polygon network. See the documentation
Obtains the contract ABI of a smart contract on the Polygon network. See the documentation
Fetches the details of a specific transaction by its transaction hash. 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 PolygonScan API provides access to blockchain data from the Polygon network. It allows for querying of blocks, transactions, and wallet addresses, among other data points. With Pipedream, you can integrate this API to automate monitoring, alerting, and data analysis tasks. You can leverage Pipedream's serverless platform to create workflows that react to events on the Polygon network in real-time, without having to manage infrastructure or write complex backend code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
polygonscan: {
type: "app",
app: "polygonscan",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.polygonscan.com/api`,
params: {
module: `account`,
action: `balance`,
address: `{{your_address}}`, //For testing, try address "0x5A534988535cf27a70e74dFfe299D06486f185B7"
apikey: `${this.polygonscan.$auth.api_key}`,
},
})
},
})