Add REST endpoints for getting members in a voice channel and getting a member's voice state #6329
Unanswered
gomander
asked this question in
API Feature Requests & Ideas
Replies: 2 comments 3 replies
-
#7061 implements half of this 🎉 |
Beta Was this translation helpful? Give feedback.
0 replies
-
for getting members in a voice channel, what data specifically would people like/need on the members, and what are the use cases for that data? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I recently rewrote my bot from using a gateway connection to purely using Discord's REST API due to scalability and reliability problems once it passed ~90 thousand servers.
In doing so, I've had to drop one command that relied on getting the nick/global/usernames of people connected to a particular voice channel. My bot previously used gateway events to know who was in a voice channel, with the Presence Intent enabled.
My request is for the ability to get the guild members currently connected to a voice channel with a REST call, and to get the voice state of a specific member.
That way I could get the user from the interaction, then the voice channel from that user's voice state, and finally the members from that voice channel.
Beta Was this translation helpful? Give feedback.
All reactions