deleteBot

inline suspend fun WickrClient.deleteBot(crossinline block: DeleteBotRequest.Builder.() -> Unit): DeleteBotResponse

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

Samples


fun main() { 
   //sampleStart 
   // Delete bot successfully
val resp = wickrClient.deleteBot {
    networkId = "12345678"
    botId = "98765"
} 
   //sampleEnd
}