Drive thousands of human connections, interactions and responses with our one powerful platform for HR, events, online meetings, sales, marketing and more.
Emit new event every time there is new data for all created topics for a meeting. See the documentation
Emit new event for each new lead generated. See the documentation
Emit new event every time the results of a poll change. See the documentation
Delay the execution of your workflow for a specific amount of time (does not count against your compute time).
MeetingPulse is a platform designed to make meetings and events interactive by enabling real-time polling, Q&A sessions, quizzes, and more. Using the MeetingPulse API, you can integrate these interactive experiences into your processes or applications. With Pipedream, the API's potential multiplies, allowing you to create seamless workflows that react to meeting events, collate feedback, and automate follow-ups. By tapping into the API via Pipedream, you get the flexibility to trigger actions on numerous apps in response to meeting activities.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
meetingpulse: {
type: "app",
app: "meetingpulse",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.meet.ps/api/v2/meetings/`,
headers: {
Authorization: `Bearer ${this.meetingpulse.$auth.access_token}`,
"accept": `application/json`,
},
})
},
})
The Delay API in Pipedream is a built-in function that allows you to pause a workflow for a specified amount of time. This can be incredibly useful when you need to stagger API calls to avoid rate limits, wait for an external process to complete, or simply introduce a delay between actions in a sequence. With precision up to milliseconds, the Delay API provides a simple yet powerful tool for managing timing in automation workflows.
export default defineComponent({
async run({steps, $}) {
// Specify the amount of time to delay your workflow in milliseconds
return $.flow.delay(5000)
},
})