updateNetwork

Updates the properties of an existing Wickr network, such as its name or encryption key configuration.

Samples


fun main() { 
   //sampleStart 
   // Update network name successfully
val resp = wickrClient.updateNetwork {
    networkId = "12345678"
    networkName = "Updated Network Name"
} 
   //sampleEnd
}