getGuestUserHistoryCount

Retrieves historical guest user count data for a Wickr network, showing the number of guest users per billing period over the past 90 days.

Samples


fun main() { 
   //sampleStart 
   // Get guest user history count
val resp = wickrClient.getGuestUserHistoryCount {
    networkId = "12345678"
} 
   //sampleEnd
}

fun main() { 
   //sampleStart 
   // Empty response for network with no guest user history
val resp = wickrClient.getGuestUserHistoryCount {
    networkId = "87654321"
} 
   //sampleEnd
}