changePasswordMyChangePasswordPostWithHttpInfo method
Future<Response>
changePasswordMyChangePasswordPostWithHttpInfo(
- ChangePasswordSchema changePasswordSchema, {
- Future<
void> ? abortTrigger,
Change Password
Change your account password. Changing the password reset the account token.
Note: This method returns the HTTP Response.
Parameters:
- ChangePasswordSchema changePasswordSchema (required):
Implementation
Future<Response> changePasswordMyChangePasswordPostWithHttpInfo(
ChangePasswordSchema changePasswordSchema, {
Future<void>? abortTrigger,
}) async {
// ignore: prefer_const_declarations
final path = r'/my/change_password';
// ignore: prefer_final_locals
Object? postBody = changePasswordSchema;
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,
abortTrigger: abortTrigger,
);
}