cURL
curl --request POST \ --url http://localhost:8091/api/servers/{serverID}/groups \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>" } '
{ "data": { "id": "<string>", "serverId": "<string>", "userId": "<string>", "name": "<string>", "position": 123, "createdAt": "2023-11-07T05:31:56Z" } }
Creates a new channel group in the server for organizing channels.
Session token obtained from /api/auth/login or /api/auth/register. Pass as: Authorization: Bearer
Server ID
Group name (1-64 characters)
1 - 64
Channel group created
Show child attributes