Skip to main content

Overview

The live_action_items query allows you to fetch action items for a live meeting. This includes both action items automatically created by Fireflies during the meeting and action items created via the createLiveActionItem mutation.

Arguments

meeting_id
ID!
required
The ID of the meeting to fetch live action items for

Response

Returns an array of LiveActionItem objects with the following fields:
name
String
Name of the person who the action item is associated with
action_item
String!
The action item text

Usage Example

To fetch live action items for a meeting:
query LiveActionItems($meeting_id: ID!) {
  live_action_items(meeting_id: $meeting_id) {
    name
    action_item
  }
}
curl -X POST https://api.fireflies.ai/graphql \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer your_api_key" \
  -d '{
    "query": "query LiveActionItems($meeting_id: ID!) { live_action_items(meeting_id: $meeting_id) { name action_item } }",
    "variables": {
      "meeting_id": "your_meeting_id"
    }
  }'
{
  "data": {
    "live_action_items": [
      {
        "name": "John Doe",
        "action_item": "Follow up with the client about the proposal"
      },
      {
        "name": "Jane Smith",
        "action_item": "Schedule a follow-up meeting for next week"
      }
    ]
  }
}

Error Codes

List of possible error codes that may be returned by the live_action_items query. Full list of error codes can be found here.

The user account has been cancelled. Please contact support if you encounter this error.

The meeting with the specified ID was not found or you do not have access to it.

You do not have permission to view action items for this meeting. Only the meeting organizer or team admin can view live action items.

Additional Resources