Iterate creates simple surveys for startups to get feedback needed to build better products and make better decisions.
Register a participant for a meeting. See the docs here
Register a participant for a webinar. See the docs here
The Iterate API, part of the Planview suite, is tailored for sophisticated task and project management, providing endpoints to manipulate boards, cards, and work items in LeanKit. Leveraging the Iterate API on Pipedream unlocks the potential for creating streamlined, serverless automations that can trigger actions across various platforms, react to changes in project status, and synchronize data between tools, all in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
iterate: {
type: "app",
app: "iterate",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://iteratehq.com/api/v1/surveys`,
params: {
access_token: `${this.iterate.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})