deleteBot

abstract suspend fun deleteBot(input: DeleteBotRequest): DeleteBotResponse

Deletes a bot from a specified Wickr network. This operation permanently removes the bot account and its associated data from the network.

Samples

// Delete bot successfully
val resp = wickrClient.deleteBot {
    networkId = "12345678"
    botId = "98765"
}