deleteDataRetentionBot
inline suspend fun WickrClient.deleteDataRetentionBot(crossinline block: DeleteDataRetentionBotRequest.Builder.() -> Unit): DeleteDataRetentionBotResponse
Deletes the data retention bot from a Wickr network. This operation permanently removes the bot and all its associated data from the database.
Samples
fun main() {
//sampleStart
// Delete data retention bot successfully
val resp = wickrClient.deleteDataRetentionBot {
networkId = "12345678"
}
//sampleEnd
}