deleteSecurityGroup

Deletes a security group from a Wickr network. This operation cannot be performed on the default security group.

Samples


fun main() { 
   //sampleStart 
   // Delete security group successfully
val resp = wickrClient.deleteSecurityGroup {
    networkId = "12345678"
    groupId = "def67890"
} 
   //sampleEnd
}