changePasswordMyChangePasswordPostWithHttpInfo method

Future<Response> changePasswordMyChangePasswordPostWithHttpInfo(
  1. ChangePassword changePassword
)

Change Password

Change your account password. Changing the password reset the account token.

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<Response> changePasswordMyChangePasswordPostWithHttpInfo(
  ChangePassword changePassword,
) async {
  // ignore: prefer_const_declarations
  final path = r'/my/change_password';

  // ignore: prefer_final_locals
  Object? postBody = changePassword;

  final queryParams = <QueryParam>[];
  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,
  );
}