# Update Meeting — Fireflies

> Update a meeting's title, privacy level, and/or channel. Each selected field is applied through a separate, sequential mutation rather than a single atomic call — if a later update fails, earlier successful changes remain applied. Set only…

- Key: `fireflies-update-meeting`
- Type: Action (Write)
- Version: 0.0.2
- App: Fireflies (`fireflies`) — https://pipedream.com/apps/fireflies.md
- This page (HTML): https://pipedream.com/apps/fireflies/actions/update-meeting
- Hints: open-world
- Source: https://github.com/PipedreamHQ/pipedream/blob/master/components/fireflies/actions/update-meeting/update-meeting.mjs

## Description

Update a meeting's title, privacy level, and/or channel. Each selected field is applied through a separate, sequential mutation rather than a single atomic call — if a later update fails, earlier successful changes remain applied. Set only the fields you want to change — unset fields are left untouched. Updating the title requires admin privileges on the Fireflies team. See the documentation for [Update Meeting Title](https://docs.fireflies.ai/graphql-api/mutation/update-meeting-title), [Update Meeting Privacy](https://docs.fireflies.ai/graphql-api/mutation/update-meeting-privacy) and [Update Meeting Channel](https://docs.fireflies.ai/graphql-api/mutation/update-meeting-channel)

## Props

| Prop | Type | Required | Description |
|---|---|---|---|
| `meetingId` | `string` | Yes | The meeting to update. Use Find Meeting by ID or Find Recent Meeting to look up a meeting ID. Options are loaded from the connected account. |
| `title` | `string` | No | The new title for the meeting, e.g. Q3 Budget Review. Must be between 5 and 256 characters and should not contain special characters. |
| `privacy` | `string` | No | Who can access the meeting. link - anyone with the link, owner - only the meeting owner, participants - meeting participants only, teammates - the owner's teammates, teammatesandparticipants - teammates and participants. |
| `channelId` | `string` | No | Move the meeting into this channel. Use List Channel ID Options to browse available channels. |

## Run it

**MCP**

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
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 accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "fireflies",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// listTools() hands your model this tool's input schema, so it can
// fill the arguments itself:
const result = await mcp.callTool({
  name: "fireflies-update-meeting",
  arguments: {
    meetingId: "Meeting ID",
    title: "Title",
  },
})
```

**TypeScript**

```ts
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-update-meeting",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    fireflies: { authProvisionId: "apn_xxxxxxx" },
    meetingId: "Meeting ID",
    title: "Title",
  },
})

console.log(result)
```

**cURL**

```bash
curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
  -H "Content-Type: application/json" \
  -H "X-PD-Environment: production" \
  -H "Authorization: Bearer {access_token}" \
  -d '{
    "external_user_id": "{external_user_id}",
    "id": "fireflies-update-meeting",
    "configured_props": {
      "fireflies": { "authProvisionId": "apn_xxxxxxx" },
      "meetingId": "Meeting ID",
      "title": "Title"
    }
  }'
```

---

- App: https://pipedream.com/apps/fireflies.md · All apps: https://pipedream.com/apps
