> ## Documentation Index
> Fetch the complete documentation index at: https://docs.opennous.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# Fireflies Webhook

> Log meeting transcripts from Fireflies.ai on contact timelines.

## Endpoint

```
POST https://api.yourdomain.com/inbound/fireflies/:workspaceId
```

## Auth

Set `FIREFLIES_WEBHOOK_SECRET` in `nous.env`. Nous checks `x-nous-signature`.

## Setup in Fireflies

See [Fireflies provider setup](/providers/fireflies) for full webhook configuration steps.

## Payload

```json theme={null}
{
  "meetingId": "meet_abc123",
  "title": "Discovery call — Acme Corp",
  "duration": 3120,
  "transcript_url": "https://app.fireflies.ai/view/...",
  "summary": "Discussed pricing and integration timeline...",
  "participants": [
    { "name": "Jane Smith", "email": "jane@acme.com" },
    { "name": "You", "email": "you@yourcompany.com" }
  ]
}
```

## Activity logged

`meeting_held` on every matched participant contact.

<Note>
  Fireflies is **update-only** — participants must already exist as contacts. New contacts are not created from meeting transcripts.
</Note>
