Rate Limiting for Delete Transcript
The Delete Transcript mutation now includes rate limiting protection to prevent abuse. The mutation is limited to 10 requests per minute across all user tiers.If you exceed this limit, the API will return atoo_many_requests error (HTTP 429) with a retryAfter timestamp indicating when you can make requests again.Meeting Privacy Control
The new Update Meeting Privacy mutation allows meeting owners and team administrators to programmatically update meeting privacy settings. You can now change privacy levels betweenlink, owner, participants, teammatesandparticipants, and teammates to control who can access meeting transcripts.This mutation follows the same authorization pattern as other meeting management operations, requiring either meeting ownership or team admin privileges.Meeting Attendance Tracking
The Transcript schema now includes a newmeeting_attendance field that provides detailed participant attendance information. This field returns an array of MeetingAttendance records showing when participants joined and left the meeting.Each attendance record includes the participant’s name, join time (ISO 8601 format), and leave time (if they left during the meeting). This feature enables better meeting analytics and participation tracking by leveraging meeting events data.The attendance data is available in both Transcript and Transcripts queries.Channel Filtering
The Transcripts query now supports filtering by channel using the newchannel_id parameter. This allows you to retrieve transcripts from specific channels by providing a single channel ID.The channel_id parameter accepts a string value and enables more targeted querying of meeting transcripts within your organization’s channels.Array Fields for Organizers and Participants
The Transcripts query now supports array fieldsorganizers and participants that allow filtering by multiple email addresses. These new array fields provide more flexible querying capabilities while maintaining backward compatibility.The previous single email fields organizer_email and participant_email are now deprecated but continue to work. Using both old and new fields simultaneously will result in a validation error.User Groups
The Fireflies API now includes comprehensive support for user groups. The new User Groups query allows you to fetch all user groups within your team or filter to only show groups you belong to using themine parameter.Additionally, the User and Users queries now include enhanced user_groups fields with detailed member information, providing better visibility into team organization and collaboration.Keyword Search
The Transcripts query has been enhanced to include keyword search functionality. By utilizing thekeyword and scope parameters, you can now perform advanced searches within both the title and the transcript text, offering more precise retrieval.The title parameter has been deprecated in favor of keywordEnhancements to Audio Upload
The Upload Audio function now includes abypass_size_check flag. This enhancement provides greater control over filtering unwanted uploads, such as voicemails from dialers.