getUsersCount

Retrieves the count of users in a Wickr network, categorized by their status (pending, active, rejected) and showing how many users can still be added.

Samples


fun main() { 
   //sampleStart 
   // Get user counts for network
val resp = wickrClient.getUsersCount {
    networkId = "12345678"
} 
   //sampleEnd
}

fun main() { 
   //sampleStart 
   // Network with no users
val resp = wickrClient.getUsersCount {
    networkId = "87654321"
} 
   //sampleEnd
}