loginWithHttpInfo method

Future<Response> loginWithHttpInfo(
  1. MmLoginRequest mmLoginRequest
)

Login to Mattermost server

Permissions No permission required

Note: This method returns the HTTP Response.

Parameters:

  • MmLoginRequest mmLoginRequest (required): User authentication object

Implementation

Future<Response> loginWithHttpInfo(
  MmLoginRequest mmLoginRequest,
) async {
  // ignore: prefer_const_declarations
  final path = r'/users/login';

  // ignore: prefer_final_locals
  Object? postBody = mmLoginRequest;

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

  const contentTypes = <String>['application/json'];

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