createDataRetentionBot
abstract suspend fun createDataRetentionBot(input: CreateDataRetentionBotRequest): CreateDataRetentionBotResponse
Creates a data retention bot in a Wickr network. Data retention bots are specialized bots that handle message archiving and compliance by capturing and storing messages for regulatory or organizational requirements.
Samples
fun main() {
//sampleStart
// Create data retention bot successfully
val resp = wickrClient.createDataRetentionBot {
networkId = "12345678"
}
//sampleEnd
}