Fireflies.ai helps your team transcribe, summarize, search, and analyze voice conversations.
Locates a specific user meeting by its unique ID. See the documentation
Retrieves the most recent meeting for a user. See the documentation
The Fireflies API allows you to harness the power of AI to record, transcribe, and search across your voice conversations. With Pipedream, you can create automated workflows that leverage these capabilities to streamline communication, enhance collaboration, and ensure important insights from meetings are captured and actionable. By integrating with other apps, you can trigger actions, sync data, and build an array of powerful automations around your Fireflies data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fireflies: {
type: "app",
app: "fireflies",
}
},
async run({steps, $}) {
const data = {
"query": `{ user { user_id email } }`,
}
return await axios($, {
method: "POST",
url: `https://api.fireflies.ai/graphql`,
headers: {
Authorization: `Bearer ${this.fireflies.$auth.api_key}`,
},
data,
})
},
})
The Klaviyo API grants you the power to automate and personalize your email marketing efforts. With it, you can manage lists, profiles, and campaigns, track event-driven communications, and analyze the results. By leveraging this API on Pipedream, you can create intricate, automated workflows that respond in real-time to your users' behavior, sync data across multiple platforms, and tailor your marketing strategies to improve engagement and conversion rates.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
klaviyo: {
type: "app",
app: "klaviyo",
}
},
async run({steps, $}) {
return await axios($, {
url: ` https://a.klaviyo.com/api/accounts/`,
headers: {
"Authorization": `Klaviyo-API-Key ${this.klaviyo.$auth.api_key}`,
"revision": `2023-12-15`,
},
})
},
})