Fireflies.ai ➔ Make.com Payload Specification

Technical reference for automating data exchange between Transcription and Automation workflows.

💡 How this integration works:

1. Fireflies.ai triggers an event when transcript.finished occurs.
2. Data is packaged into a standard JSON webhook payload.
3. Payload is delivered into your Make.com intake pipeline and mapped to your Automation targets.

Authentication & Event Specs

ParameterSource (Fireflies.ai)Destination (Make.com)
Auth MechanismOAuth 2.0 / API KeyAPI Key Header
Trigger Eventtranscript.finishedIngest Pipeline

Sample Webhook JSON Payload

{
  "event": "transcript.finished_to_make",
  "timestamp": 1788105197,
  "source": {
    "platform": "Fireflies.ai",
    "auth_mode": "OAuth 2.0 / API Key",
    "data": {
      "meeting_id": "sample_meeting_id_val",
      "transcript_url": "sample_transcript_url_val",
      "speakers_count": "sample_speakers_count_val",
      "duration_min": "sample_duration_min_val"
    }
  },
  "destination": {
    "platform": "Make.com",
    "auth_mode": "API Key Header",
    "target_endpoint": "https://api.make.com/v1/ingest",
    "mapped_fields": {
      "execution_id": "{{source.meeting_id}}",
      "scenario_id": "{{source.transcript_url}}",
      "status": "{{source.speakers_count}}",
      "data_output": "{{source.duration_min}}"
    }
  }
}

Quick Integration Setup

  1. Retrieve your secret API credentials from your Fireflies.ai developer dashboard using authentication method OAuth 2.0 / API Key.
  2. Configure the target endpoint URL to route payloads into the Make.com intake pipeline.
  3. Map incoming schema properties according to the JSON specification detailed above.

Expected HTTP Response Codes

Status CodeMeaningTroubleshooting Step
200 OKSuccessPayload accepted and queued for routing.
401 UnauthorizedAuth FailureVerify headers for valid OAuth 2.0 / API Key credentials.
422 UnprocessableSchema ErrorCheck field keys alignment between source and target payload.

Related Technical Specifications