Fireflies.ai helps your team transcribe, summarize, search, and analyze voice conversations.
Locates a specific user meeting by its unique ID. See the documentation
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Retrieves the most recent meeting for a user. See the documentation
Creates and stores a new meeting in Fireflies, allowing it to be transcribed and shared. 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,
})
},
})
Develop, run and deploy your Node.js code in Pipedream workflows, using it between no-code steps, with connected accounts, or integrate Data Stores and File Stores.
This includes installing NPM packages, within your code without having to manage a package.json
file or running npm install
.
Below is an example of installing the axios
package in a Pipedream Node.js code step. Pipedream imports the axios
package, performs the API request, and shares the response with subsequent workflow steps:
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})