createVoiceRegion abstract method

  1. @POST.new('/admin/voice/regions/create')
Future<CreateVoiceRegionResponse> createVoiceRegion({
  1. @Body.new() required CreateVoiceRegionRequest body,
})

Create voice region.

Creates a new voice server region. Defines geographic location and performance characteristics for voice routing. Creates audit log entry. Requires VOICE_REGION_CREATE permission.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/voice/regions/create')
Future<CreateVoiceRegionResponse> createVoiceRegion({
  @Body() required CreateVoiceRegionRequest body,
});