Open this page in the API Guide

AccountController.ValidatePassword Method

Validates the password against the current password policy.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax
[HttpPostAttribute("ValidatePassword")]
public ActionResult<bool> ValidatePassword(
	[FromBodyAttribute] ValidatePasswordOptions options,
	Guid? sessionId = null
)

Parameters

options
Type: Dundas.BI.WebApi.Models.ValidatePasswordOptions
The password information.
sessionId (Optional)
Type: System.Nullable<Guid>
The current session ID.

Return Value

Type: ActionResult<Boolean>
A Boolean indicating pass or fail.
See Also