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
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": []
}
]
}
}
Error Codes
List of possible error codes that may be returned by the users
query. Full list of error codes can be found here.
This may indicate that you are not a part of any team. Please contact support if you encounter this error
Additional Resources