View as Markdown
Fireflies icon

Fireflies ACTION

Share Meeting

Share a meeting with up to 50 people by email, optionally expiring their access after a number of days. Only the meeting owner or a team admin (on the owner's team) can share a meeting. Rate-limited to 10 requests per hour per user. Use Revoke Meeting Access to remove access later. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Fireflies account once, then configure and run Share Meeting from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "fireflies-share-meeting",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    fireflies: { authProvisionId: "apn_xxxxxxx" },
    meetingId: "Meeting ID",
    emails: ["Emails"],
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Share Meeting inputs
Property Type Description
meetingId Meeting ID string
The meeting to share. Use Find Meeting by ID or Find Recent Meeting to look up a meeting ID.
Required Dynamic
emails Emails string[]
Email addresses to share the meeting with (max 50). Example: ["jane@example.com", "john@example.com"].
Required
expiryDays Expiry Days integer
Number of days after which shared access expires. Must be one of 7, 14, or 30. Omit for access that doesn't expire.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
fireflies-share-meeting
Version
0.0.2
App
Fireflies
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes