enableBotWithHttpInfo method

Future<Response> enableBotWithHttpInfo(
  1. String botUserId
)

Enable a bot

Enable a bot. ##### Permissions Must have manage_bots permission. Minimum server version: 5.10

Note: This method returns the HTTP Response.

Parameters:

  • String botUserId (required): Bot user ID

Implementation

Future<Response> enableBotWithHttpInfo(
  String botUserId,
) async {
  // ignore: prefer_const_declarations
  final path = r'/bots/{bot_user_id}/enable'.replaceAll('{bot_user_id}', botUserId);

  // ignore: prefer_final_locals
  Object? postBody;

  final queryParams = <MmQueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  const contentTypes = <String>[];

  return apiClient.invokeAPI(
    path,
    'POST',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}