getBot

inline suspend fun WickrClient.getBot(crossinline block: GetBotRequest.Builder.() -> Unit): GetBotResponse

Retrieves detailed information about a specific bot in a Wickr network, including its status, group membership, and authentication details.

Samples


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