createNetwork
Creates a new Wickr network with specified access level and configuration. This operation provisions a new communication network for your organization.
Samples
// Create network successfully
val resp = wickrClient.createNetwork {
networkName = "Production Network"
accessLevel = AccessLevel.fromValue("PREMIUM")
enablePremiumFreeTrial = false
}Content copied to clipboard
// Create network with free trial
val resp = wickrClient.createNetwork {
networkName = "Trial Network"
accessLevel = AccessLevel.fromValue("PREMIUM")
enablePremiumFreeTrial = true
}Content copied to clipboard