Updates voice server configuration including capacity, region assignment, and quality settings. Changes apply to new connections. Creates audit log entry. Requires VOICE_SERVER_UPDATE permission.
curl --request POST \
--url https://api.fluxer.app/v1/admin/voice/servers/update \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"region_id": "<string>",
"server_id": "<string>",
"endpoint": "<string>",
"api_key": "<string>",
"api_secret": "<string>",
"is_active": true,
"vip_only": true,
"required_guild_features": [
"<string>"
],
"allowed_guild_ids": [
"<string>"
],
"allowed_user_ids": [
"<string>"
]
}
'{
"server": {
"region_id": "<string>",
"server_id": "<string>",
"endpoint": "<string>",
"is_active": true,
"vip_only": true,
"required_guild_features": [
"<string>"
],
"allowed_guild_ids": [
"<string>"
],
"allowed_user_ids": [
"<string>"
],
"created_at": "<string>",
"updated_at": "<string>"
}
}Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.
ID of the region this server belongs to
Unique identifier for the voice server
Client signal WebSocket endpoint URL for the voice server
API key for authenticating with the voice server
API secret for authenticating with the voice server
Whether the server is currently active
Whether this server is restricted to VIP users
Guild features required to use this server
100Guild IDs explicitly allowed to use this server
1000User IDs explicitly allowed to use this server
1000Success
Updated voice server
Show child attributes
curl --request POST \
--url https://api.fluxer.app/v1/admin/voice/servers/update \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"region_id": "<string>",
"server_id": "<string>",
"endpoint": "<string>",
"api_key": "<string>",
"api_secret": "<string>",
"is_active": true,
"vip_only": true,
"required_guild_features": [
"<string>"
],
"allowed_guild_ids": [
"<string>"
],
"allowed_user_ids": [
"<string>"
]
}
'{
"server": {
"region_id": "<string>",
"server_id": "<string>",
"endpoint": "<string>",
"is_active": true,
"vip_only": true,
"required_guild_features": [
"<string>"
],
"allowed_guild_ids": [
"<string>"
],
"allowed_user_ids": [
"<string>"
],
"created_at": "<string>",
"updated_at": "<string>"
}
}