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
Copy file name to clipboardExpand all lines: fusionauth-netcore-client/src/io/fusionauth/IFusionAuthClient.cs
+41-6Lines changed: 41 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -216,7 +216,7 @@ public interface IFusionAuthAsyncClient {
216
216
/// 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.
217
217
/// This is an asynchronous method.
218
218
/// </summary>
219
-
/// <param name="loginId"> The loginId of the User that you intend to change the password for.</param>
219
+
/// <param name="loginId"> The loginId (email or username) of the User that you intend to change the password for.</param>
220
220
/// <returns>
221
221
/// When successful, the response will contain the log of the action. If there was a validation error or any
222
222
/// other type of error, this will return the Errors object in the response. Additionally, if FusionAuth could not be
@@ -225,6 +225,24 @@ public interface IFusionAuthAsyncClient {
/// Check to see if the user must obtain a Trust Request Id in order to complete a change password request.
230
+
/// When a user has enabled Two-Factor authentication, before you are allowed to use the Change Password API to change
231
+
/// your password, you must obtain a Trust Request Id by completing a Two-Factor Step-Up authentication.
232
+
///
233
+
/// 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.
234
+
/// This is an asynchronous method.
235
+
/// </summary>
236
+
/// <param name="loginId"> The loginId of the User that you intend to change the password for.</param>
237
+
/// <param name="loginIdTypes"> The identity types that FusionAuth will compare the loginId to.</param>
238
+
/// <returns>
239
+
/// When successful, the response will contain the log of the action. If there was a validation error or any
240
+
/// other type of error, this will return the Errors object in the response. Additionally, if FusionAuth could not be
241
+
/// contacted because it is down or experiencing a failure, the response will contain an Exception, which could be an
/// Make a Client Credentials grant request to obtain an access token.
230
248
/// This is an asynchronous method.
@@ -3510,7 +3528,7 @@ public interface IFusionAuthAsyncClient {
3510
3528
/// This is an asynchronous method.
3511
3529
/// </summary>
3512
3530
/// <param name="loginId"> The email or username of the user.</param>
3513
-
/// <param name="loginIdTypes"> the identity types that FusionAuth will compare the loginId to.</param>
3531
+
/// <param name="loginIdTypes"> The identity types that FusionAuth will compare the loginId to.</param>
3514
3532
/// <returns>
3515
3533
/// When successful, the response will contain the log of the action. If there was a validation error or any
3516
3534
/// other type of error, this will return the Errors object in the response. Additionally, if FusionAuth could not be
@@ -3704,7 +3722,7 @@ public interface IFusionAuthAsyncClient {
3704
3722
/// <param name="loginId"> The userId id.</param>
3705
3723
/// <param name="start"> The start instant as UTC milliseconds since Epoch.</param>
3706
3724
/// <param name="end"> The end instant as UTC milliseconds since Epoch.</param>
3707
-
/// <param name="loginIdTypes"> the identity types that FusionAuth will compare the loginId to.</param>
3725
+
/// <param name="loginIdTypes"> The identity types that FusionAuth will compare the loginId to.</param>
3708
3726
/// <returns>
3709
3727
/// When successful, the response will contain the log of the action. If there was a validation error or any
3710
3728
/// other type of error, this will return the Errors object in the response. Additionally, if FusionAuth could not be
@@ -5263,7 +5281,7 @@ public interface IFusionAuthSyncClient {
5263
5281
///
5264
5282
/// 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.
5265
5283
/// </summary>
5266
-
/// <param name="loginId"> The loginId of the User that you intend to change the password for.</param>
5284
+
/// <param name="loginId"> The loginId (email or username) of the User that you intend to change the password for.</param>
5267
5285
/// <returns>
5268
5286
/// When successful, the response will contain the log of the action. If there was a validation error or any
5269
5287
/// other type of error, this will return the Errors object in the response. Additionally, if FusionAuth could not be
@@ -5272,6 +5290,23 @@ public interface IFusionAuthSyncClient {
/// Check to see if the user must obtain a Trust Request Id in order to complete a change password request.
5295
+
/// When a user has enabled Two-Factor authentication, before you are allowed to use the Change Password API to change
5296
+
/// your password, you must obtain a Trust Request Id by completing a Two-Factor Step-Up authentication.
5297
+
///
5298
+
/// 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.
5299
+
/// </summary>
5300
+
/// <param name="loginId"> The loginId of the User that you intend to change the password for.</param>
5301
+
/// <param name="loginIdTypes"> The identity types that FusionAuth will compare the loginId to.</param>
5302
+
/// <returns>
5303
+
/// When successful, the response will contain the log of the action. If there was a validation error or any
5304
+
/// other type of error, this will return the Errors object in the response. Additionally, if FusionAuth could not be
5305
+
/// contacted because it is down or experiencing a failure, the response will contain an Exception, which could be an
0 commit comments