with Fireflies and Api Void?
Locates a specific user meeting by its unique ID. See the documentation
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,
})
},
})
With the Api Void API, you can build apps that:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
api_void: {
type: "app",
app: "api_void",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://endpoint.apivoid.com/iprep/v1/pay-as-you-go/`,
params: {
key: `${this.api_void.$auth.api_key}`,
ip: `{enter_ip_here}`,
},
})
},
})