getNetwork

abstract suspend fun getNetwork(input: GetNetworkRequest): GetNetworkResponse

Retrieves detailed information about a specific Wickr network, including its configuration, access level, and status.

Samples


fun main() { 
   //sampleStart 
   // Get network successfully
val resp = wickrClient.getNetwork {
    networkId = "12345678"
} 
   //sampleEnd
}