updateSecurityGroup

Updates the properties of an existing security group in a Wickr network, such as its name or settings.

Samples

// Update security group successfully
val resp = wickrClient.updateSecurityGroup {
    networkId = "12345678"
    groupId = "abc12345"
    name = "Updated Group Name"
    securityGroupSettings = SecurityGroupSettings {
        lockoutThreshold = 15
    }
}