aiBotV1BotsBotDestroy method

Future<void> aiBotV1BotsBotDestroy(
  1. int id,
  2. String org
)

Create modify and update bot information for a specific tenant.

Parameters:

  • int id (required): A unique integer value identifying this bot.

  • String org (required):

Implementation

Future<void> aiBotV1BotsBotDestroy(int id, String org,) async {
  final response = await aiBotV1BotsBotDestroyWithHttpInfo(id, org,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}