> ## Documentation Index
> Fetch the complete documentation index at: https://nango-wari-migrated-bigcommerce-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Fireflies

## Overview

<CardGroup cols={3}>
  <Card title="Pre-built tooling" icon="screwdriver-wrench" href="#pre-built-tooling" />

  <Card title="Pre-built integrations" icon="square-check" href="#pre-built-integrations" />

  <Card title="Access requirements" icon="triangle-exclamation" href="#access-requirements" />

  <Card title="Setup guide" icon="rocket" href="#setup-guide" />

  <Card title="Useful links" icon="circle-info" href="#useful-links" />

  <Card title="API gotchas" icon="biohazard" href="#api-gotchas" />
</CardGroup>

## Pre-built tooling

<AccordionGroup>
  <Accordion title="✅ Authorization">
    | Tools                             | Status |
    | --------------------------------- | ------ |
    | Pre-built authorization (API Key) | ✅      |
    | Pre-built authorization UI        | ✅      |
    | Custom authorization UI           | ✅      |
    | End-user authorization guide      | 🚫     |
    | Expired credentials detection     | ✅      |
  </Accordion>

  <Accordion title="✅ Read & write data">
    | Tools                                     | Status                         |
    | ----------------------------------------- | ------------------------------ |
    | Pre-built integrations                    | ✅                              |
    | API unification                           | ✅                              |
    | 2-way sync                                | ✅                              |
    | Webhooks from Nango on data modifications | ✅                              |
    | Real-time webhooks from 3rd-party API     | 🚫 (time to contribute: \<48h) |
    | Proxy requests                            | ✅                              |
  </Accordion>

  <Accordion title="✅ Observability & data quality">
    | Tools                   | Status |
    | ----------------------- | ------ |
    | HTTP request logging    | ✅      |
    | End-to-end type safety  | ✅      |
    | Data runtime validation | ✅      |
    | OpenTelemetry export    | ✅      |
    | Slack alerts on errors  | ✅      |
    | Integration status API  | ✅      |
  </Accordion>

  <Accordion title="✅ Customization">
    | Tools                              | Status                         |
    | ---------------------------------- | ------------------------------ |
    | Create or customize use-cases      | ✅                              |
    | Pre-configured pagination          | 🚫 (time to contribute: \<48h) |
    | Pre-configured rate-limit handling | 🚫 (time to contribute: \<48h) |
    | Per-customer configurations        | ✅                              |
  </Accordion>
</AccordionGroup>

### Others

| Function name                  | Description                                                                              | Type                                           | Source code                                                                                                                            |
| ------------------------------ | ---------------------------------------------------------------------------------------- | ---------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| `add-to-live`                  | Add Fireflies bot to a live meeting by URL.                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/add-to-live.ts)                  |
| `continue-askfred-thread`      | Continue an existing AskFred conversation thread.                                        | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/continue-askfred-thread.ts)      |
| `create-askfred-thread`        | Start a new AskFred AI conversation thread                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/create-askfred-thread.ts)        |
| `create-bite`                  | Create a soundbite clip from a transcript segment                                        | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/create-bite.ts)                  |
| `create-live-action-item`      | Create a live action item during an active meeting.                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/create-live-action-item.ts)      |
| `create-live-soundbite`        | Create a soundbite/clip during an active live meeting                                    | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/create-live-soundbite.ts)        |
| `delete-askfred-thread`        | Delete an AskFred conversation thread and all its messages.                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/delete-askfred-thread.ts)        |
| `delete-transcript`            | Permanently delete a transcript by ID.                                                   | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/delete-transcript.ts)            |
| `get-analytics`                | Get conversation analytics for a date range.                                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/get-analytics.ts)                |
| `get-askfred-thread`           | Retrieve an AskFred conversation thread with all messages.                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/get-askfred-thread.ts)           |
| `get-bite`                     | Retrieve a specific bite/soundbite by ID.                                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/get-bite.ts)                     |
| `get-channel`                  | Retrieve a specific channel by ID.                                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/get-channel.ts)                  |
| `get-transcript`               | Retrieve a single transcript by ID including sentences, summary, speakers, and metadata. | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/get-transcript.ts)               |
| `get-user`                     | Retrieve a specific user by ID.                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/get-user.ts)                     |
| `list-active-meetings`         | List currently active/live meetings                                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/list-active-meetings.ts)         |
| `list-askfred-threads`         | List AskFred AI conversation threads, optionally filtered by transcript.                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/list-askfred-threads.ts)         |
| `list-bites`                   | List soundbite clips with optional filters.                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/list-bites.ts)                   |
| `list-channels`                | List all channels in the workspace.                                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/list-channels.ts)                |
| `list-contacts`                | List all contacts in the workspace.                                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/list-contacts.ts)                |
| `list-transcripts`             | List transcripts with optional filters.                                                  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/list-transcripts.ts)             |
| `list-user-groups`             | List user groups, optionally filtered to mine.                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/list-user-groups.ts)             |
| `list-users`                   | List all users in the workspace.                                                         | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/list-users.ts)                   |
| `revoke-shared-meeting-access` | Revoke a previously shared meeting access.                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/revoke-shared-meeting-access.ts) |
| `share-meeting`                | Share a meeting transcript via email with optional expiry                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/share-meeting.ts)                |
| `update-meeting-channel`       | Assign transcripts to a channel                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/update-meeting-channel.ts)       |
| `update-meeting-privacy`       | Update the privacy setting of a meeting transcript.                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/update-meeting-privacy.ts)       |
| `update-meeting-state`         | Pause or resume a live meeting recording.                                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/update-meeting-state.ts)         |
| `update-meeting-title`         | Update the title of a meeting transcript.                                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/update-meeting-title.ts)         |
| `upload-audio`                 | Submit an audio file URL for transcription.                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/actions/upload-audio.ts)                 |
| `analytics`                    | Sync conversation analytics for rolling date windows                                     | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/syncs/analytics.ts)                      |
| `bites`                        | Full-refresh sync of soundbite clips.                                                    | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/syncs/bites.ts)                          |
| `channels`                     | Full-refresh sync of workspace channels                                                  | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/syncs/channels.ts)                       |
| `contacts`                     | Full-refresh sync of contacts derived from meeting participants.                         | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/syncs/contacts.ts)                       |
| `transcript-sentences`         | Full-refresh sync of all transcript sentences, fetched per transcript.                   | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/syncs/transcript-sentences.ts)           |
| `transcripts`                  | Incrementally sync transcript metadata and structured notes using fromDate checkpoint    | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/syncs/transcripts.ts)                    |
| `user-groups`                  | Full-refresh sync of user groups.                                                        | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/syncs/user-groups.ts)                    |
| `users`                        | Full-refresh sync of workspace users.                                                    | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/fireflies/syncs/users.ts)                          |

## Access requirements

| Pre-Requisites    | Status | Comment |
| ----------------- | ------ | ------- |
| Paid dev account  | ❓      |         |
| Paid test account | ❓      |         |
| Partnership       | ❓      |         |
| App review        | ❓      |         |
| Security audit    | ❓      |         |

## Setup guide

*No setup guide yet.*

<Tip>Need help getting started? Get help in the [community](https://nango.dev/slack).</Tip>

<Note>Contribute improvements to the setup guide by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/fireflies.mdx)</Note>

## Useful links

* [How to obtain an API key](https://docs.fireflies.ai/fundamentals/authorization#acquiring-a-token)
* [Fireflies Authentication](https://docs.fireflies.ai/fundamentals/authorization#making-an-authenticated-request)
* [Fireflies API docs](https://docs.fireflies.ai/getting-started/introduction)

<Note>Contribute useful links by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/fireflies.mdx)</Note>

## API gotchas

* Fireflies uses `API_KEY` auth mode with `Authorization: Bearer API_KEY` as a request header to access different endpoints.
* Fireflies enforces both rate and upload limits for its endpoints based on the subscription plan. For more details check [Fireflies limits](https://docs.fireflies.ai/fundamentals/limits)

<Note>Contribute API gotchas by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/fireflies.mdx)</Note>
