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 historical stock prices for a specific symbol are updated.
Emits an event each time a meeting starts in your Zoom account
Emit new event when historical stock prices for a specific symbol are updated.
Obtain financial statements for a specific company. See the docs here
Fetch historical stock prices for a given symbol and time period. See the docs here
Find stock symbols using company names or partial symbols. See the docs here
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}`,
},
})
},
})
EODHD API offers comprehensive financial data, including end-of-day stocks, ETFs, and mutual fund prices, dividends, splits, and more across multiple exchanges globally. On Pipedream, you can harness this treasure trove of financial information to automate market analysis, update data stores, or trigger notifications based on stock movements or financial news.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
eodhd_apis: {
type: "app",
app: "eodhd_apis",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://eodhistoricaldata.com/api/eod/AAPL.US`,
params: {
api_token: `${this.eodhd_apis.$auth.api_token}`,
},
})
},
})