updateVoiceServer abstract method

  1. @POST.new('/admin/voice/servers/update')
Future<UpdateVoiceServerResponse> updateVoiceServer({
  1. @Body.new() required UpdateVoiceServerRequest body,
})

Update voice server.

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.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/voice/servers/update')
Future<UpdateVoiceServerResponse> updateVoiceServer({
  @Body() required UpdateVoiceServerRequest body,
});