Fireflies.ai ➔ Tally Payload Specification

Technical reference for automating data exchange between Transcription and Forms 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 Tally intake pipeline and mapped to your Forms targets.

Authentication & Event Specs

ParameterSource (Fireflies.ai)Destination (Tally)
Auth MechanismOAuth 2.0 / API KeyBearer Token Header
Trigger Eventtranscript.finishedIngest Pipeline

Sample Webhook JSON Payload

{
  "event": "transcript.finished_to_tally",
  "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": "Tally",
    "auth_mode": "Bearer Token Header",
    "target_endpoint": "https://api.tally.com/v1/ingest",
    "mapped_fields": {
      "submission_id": "{{source.meeting_id}}",
      "form_id": "{{source.transcript_url}}",
      "responder_email": "{{source.speakers_count}}",
      "fields_payload": "{{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 Tally 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