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
Run any Bash in a Pipedream step within your workflow. Refer to the Pipedream Bash docs to learn more.
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`,
},
})
},
})
# $PIPEDREAM_STEPS file contains data from previous steps
cat $PIPEDREAM_STEPS | jq .trigger.context.id
# Write data to $PIPEDREAM_EXPORTS to return it from the step
# Exports must be written as key=value
echo foo=bar >> $PIPEDREAM_EXPORTS