curl -X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer your_api_key" \
--data '{ "query": "query Channels { channels { id title is_private members { user_id email } } }" }' \
https://api.fireflies.ai/graphql
{
"data": {
"channels": [
{
"id": "channel-id-1",
"title": "Engineering",
"is_private": false,
"members": [
{
"user_id": "user-id-1",
"email": "[email protected]",
"name": "John Doe"
},
{
"user_id": "user-id-2",
"email": "[email protected]",
"name": "Jane Smith"
}
]
},
{
"id": "channel-id-2",
"title": "Private Project",
"is_private": true,
"members": [
{
"user_id": "user-id-1",
"email": "[email protected]",
"name": "John Doe"
}
]
}
]
}
}
Querying list of channels
query Channels {
channels {
id
title
is_private
created_by
created_at
updated_at
members {
user_id
email
name
}
}
}
curl -X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer your_api_key" \
--data '{ "query": "query Channels { channels { id title is_private members { user_id email } } }" }' \
https://api.fireflies.ai/graphql
{
"data": {
"channels": [
{
"id": "channel-id-1",
"title": "Engineering",
"is_private": false,
"members": [
{
"user_id": "user-id-1",
"email": "[email protected]",
"name": "John Doe"
},
{
"user_id": "user-id-2",
"email": "[email protected]",
"name": "Jane Smith"
}
]
},
{
"id": "channel-id-2",
"title": "Private Project",
"is_private": true,
"members": [
{
"user_id": "user-id-1",
"email": "[email protected]",
"name": "John Doe"
}
]
}
]
}
}
Was this page helpful?