listVoiceServers abstract method

  1. @POST.new('/admin/voice/servers/list')
Future<ListVoiceServersResponse> listVoiceServers({
  1. @Body.new() required ListVoiceServersRequest body,
})

List voice servers.

Lists all voice servers with connection counts and capacity. Shows server status, region assignment, and load information. Supports filtering and pagination. Requires VOICE_SERVER_LIST permission.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/voice/servers/list')
Future<ListVoiceServersResponse> listVoiceServers({
  @Body() required ListVoiceServersRequest body,
});