getGuestUserHistoryCount
abstract suspend fun getGuestUserHistoryCount(input: GetGuestUserHistoryCountRequest): GetGuestUserHistoryCountResponse
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
// Get guest user history count
val resp = wickrClient.getGuestUserHistoryCount {
networkId = "12345678"
}Content copied to clipboard
// Empty response for network with no guest user history
val resp = wickrClient.getGuestUserHistoryCount {
networkId = "87654321"
}Content copied to clipboard