Fireflies.ai ➔ Airtable Payload Specification
Technical reference for automating data exchange between Transcription and NoCode DB 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 Airtable intake pipeline and mapped to your NoCode DB targets.
Authentication & Event Specs
| Parameter | Source (Fireflies.ai) | Destination (Airtable) |
|---|---|---|
| Auth Mechanism | OAuth 2.0 / API Key | Bearer Token |
| Trigger Event | transcript.finished | Ingest Pipeline |
Sample Webhook JSON Payload
{
"event": "transcript.finished_to_airtable",
"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": "Airtable",
"auth_mode": "Bearer Token",
"target_endpoint": "https://api.airtable.com/v1/ingest",
"mapped_fields": {
"record_id": "{{source.meeting_id}}",
"base_id": "{{source.transcript_url}}",
"table_name": "{{source.speakers_count}}",
"fields": "{{source.duration_min}}"
}
}
}
Quick Integration Setup
- Retrieve your secret API credentials from your Fireflies.ai developer dashboard using authentication method
OAuth 2.0 / API Key. - Configure the target endpoint URL to route payloads into the Airtable intake pipeline.
- Map incoming schema properties according to the JSON specification detailed above.
Expected HTTP Response Codes
| Status Code | Meaning | Troubleshooting Step |
|---|---|---|
200 OK | Success | Payload accepted and queued for routing. |
401 Unauthorized | Auth Failure | Verify headers for valid OAuth 2.0 / API Key credentials. |
422 Unprocessable | Schema Error | Check field keys alignment between source and target payload. |