cURL
curl --request GET \ --url http://localhost:8091/api/servers/{serverID}/channels/{channelID}/members \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "<string>", "username": "<string>", "displayName": "<string>", "status": "<string>", "bot": true, "createdAt": "2023-11-07T05:31:56Z", "avatarPath": "<string>" } ] }
Returns all members of the channel.
Session token obtained from /api/auth/login or /api/auth/register. Pass as: Authorization: Bearer
Server ID
Channel ID
List of channel members
Show child attributes