AccountControllerChangePassword Method

POST /Account/ChangePassword/ Updates the password for the current account, or if an account ID is specified, the password for the specified account.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntax
[HttpPostAttribute]
[ActionNameAttribute("ChangePassword")]
public IActionResult ChangePassword(
	[FromBodyAttribute] ChangePasswordOptions options,
	Guid? sessionId = null
)

Parameters

options
Type: Dundas.BI.WebApi.ModelsChangePasswordOptions
The options used to change the password for the current account or a specified account (if an account ID is specified).
sessionId (Optional)
Type: SystemNullableGuid
Current session ID.

Return Value

Type: IActionResult
A status code indicating success or the reason for failure.
See Also