curl -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer your_api_key" \
	--data '{ "query": "{ users { name integrations } }" }' \
	https://api.fireflies.ai/graphql
{
  "data": {
    "users": [
      {
        "name": "Justin Fly",
        "integrations": []
      },
      {
        "name": "Peter Fire",
        "integrations": []
      }
    ]
  }
}

Overview

The users query is designed to fetch a list of all users within the team. You can also view this list on your dashboard at app.fireflies.ai/team

Schema

Fields available to the User query

Usage Example

query Users {
  users {
    user_id
    email
    name
    num_transcripts
    recent_meeting
    minutes_consumed
    is_admin
    integrations
  }
}
curl -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer your_api_key" \
	--data '{ "query": "{ users { name integrations } }" }' \
	https://api.fireflies.ai/graphql
{
  "data": {
    "users": [
      {
        "name": "Justin Fly",
        "integrations": []
      },
      {
        "name": "Peter Fire",
        "integrations": []
      }
    ]
  }
}

Additional Resources