View as Markdown
Fireflies icon

Fireflies ACTION

Revoke Meeting Access

Revoke a previously shared meeting's access for a specific email address. Access can be re-granted at any time with Share Meeting. 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 Revoke Meeting Access 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-revoke-meeting-access",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    fireflies: { authProvisionId: "apn_xxxxxxx" },
    meetingId: "Meeting ID",
    email: "Email",
  },
})

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.

Revoke Meeting Access inputs
Property Type Description
meetingId Meeting ID string
The meeting to revoke access to. Use Find Meeting by ID or Find Recent Meeting to look up a meeting ID.
Required Dynamic
email Email string
The email address to revoke access for, e.g. jane@example.com.
Required

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-revoke-meeting-access
Version
0.0.2
App
Fireflies
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes