You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -548,6 +549,26 @@ public ClientResponse<Void, Errors> checkChangePasswordUsingId(String changePass
548
549
.go();
549
550
}
550
551
552
+
/**
553
+
* Check to see if the user must obtain a Trust Token Id in order to complete a change password request.
554
+
* When a user has enabled Two-Factor authentication, before you are allowed to use the Change Password API to change
555
+
* your password, you must obtain a Trust Token by completing a Two-Factor Step-Up authentication.
556
+
* <p>
557
+
* An HTTP status code of 400 with a general error code of [TrustTokenRequired] indicates that a Trust Token is required to make a POST request to this API.
558
+
*
559
+
* @param changePasswordId The change password Id used to find the user. This value is generated by FusionAuth once the change password workflow has been initiated.
560
+
* @param ipAddress (Optional) IP address of the user changing their password. This is used for MFA risk assessment.
* Check to see if the user must obtain a Trust Token Id in order to complete a change password request.
553
574
* When a user has enabled Two-Factor authentication, before you are allowed to use the Change Password API to change
@@ -566,6 +587,26 @@ public ClientResponse<Void, Errors> checkChangePasswordUsingJWT(String encodedJW
566
587
.go();
567
588
}
568
589
590
+
/**
591
+
* Check to see if the user must obtain a Trust Token Id in order to complete a change password request.
592
+
* When a user has enabled Two-Factor authentication, before you are allowed to use the Change Password API to change
593
+
* your password, you must obtain a Trust Token by completing a Two-Factor Step-Up authentication.
594
+
* <p>
595
+
* An HTTP status code of 400 with a general error code of [TrustTokenRequired] indicates that a Trust Token is required to make a POST request to this API.
596
+
*
597
+
* @param encodedJWT The encoded JWT (access token).
598
+
* @param ipAddress (Optional) IP address of the user changing their password. This is used for MFA risk assessment.
* Check to see if the user must obtain a Trust Request Id in order to complete a change password request.
571
612
* When a user has enabled Two-Factor authentication, before you are allowed to use the Change Password API to change
@@ -584,6 +625,26 @@ public ClientResponse<Void, Errors> checkChangePasswordUsingLoginId(String login
584
625
.go();
585
626
}
586
627
628
+
/**
629
+
* Check to see if the user must obtain a Trust Request Id in order to complete a change password request.
630
+
* When a user has enabled Two-Factor authentication, before you are allowed to use the Change Password API to change
631
+
* your password, you must obtain a Trust Request Id by completing a Two-Factor Step-Up authentication.
632
+
* <p>
633
+
* An HTTP status code of 400 with a general error code of [TrustTokenRequired] indicates that a Trust Token is required to make a POST request to this API.
634
+
*
635
+
* @param loginId The loginId (email or username) of the User that you intend to change the password for.
636
+
* @param ipAddress (Optional) IP address of the user changing their password. This is used for MFA risk assessment.
* Check to see if the user must obtain a Trust Request Id in order to complete a change password request.
589
650
* When a user has enabled Two-Factor authentication, before you are allowed to use the Change Password API to change
@@ -604,6 +665,28 @@ public ClientResponse<Void, Errors> checkChangePasswordUsingLoginIdAndLoginIdTyp
604
665
.go();
605
666
}
606
667
668
+
/**
669
+
* Check to see if the user must obtain a Trust Request Id in order to complete a change password request.
670
+
* When a user has enabled Two-Factor authentication, before you are allowed to use the Change Password API to change
671
+
* your password, you must obtain a Trust Request Id by completing a Two-Factor Step-Up authentication.
672
+
* <p>
673
+
* An HTTP status code of 400 with a general error code of [TrustTokenRequired] indicates that a Trust Token is required to make a POST request to this API.
674
+
*
675
+
* @param loginId The loginId of the User that you intend to change the password for.
676
+
* @param loginIdTypes The identity types that FusionAuth will compare the loginId to.
677
+
* @param ipAddress (Optional) IP address of the user changing their password. This is used for MFA risk assessment.
0 commit comments