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
Emit new event for each attachment in a message received. This source is capped at 100 max new messages per run.
Emit new event when an email matching the search criteria is received. This source is capped at 100 max new messages per run.
Create a draft from your Google Workspace email account. See the documentation
Download an attachment by attachmentId to the /tmp directory. See the documentation
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`,
},
})
},
})
By connecting your personal Gmail account to Pipedream, you'll be able to incorporate email into whatever you're building with any of the thousands of apps that are available on Pipedream.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gmail: {
type: "app",
app: "gmail",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/oauth2/v1/userinfo`,
headers: {
Authorization: `Bearer ${this.gmail.$auth.oauth_access_token}`,
},
})
},
})