LogOnController.ProcessPasswordResetRequest Method |
Processes the password reset request.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpPutAttribute("ResetPassword/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(410)]
public ActionResult ProcessPasswordResetRequest(
Guid id,
[FromBodyAttribute] ProcessPasswordResetRequestOptions options
)
<HttpPutAttribute("ResetPassword/{id}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(405)>
<ProducesResponseTypeAttribute(410)>
Public Function ProcessPasswordResetRequest (
id As Guid,
<FromBodyAttribute> options As ProcessPasswordResetRequestOptions
) As ActionResult
public:
[HttpPutAttribute(L"ResetPassword/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(410)]
ActionResult^ ProcessPasswordResetRequest(
Guid id,
[FromBodyAttribute] ProcessPasswordResetRequestOptions^ options
)
[<HttpPutAttribute("ResetPassword/{id}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(405)>]
[<ProducesResponseTypeAttribute(410)>]
member ProcessPasswordResetRequest :
id : Guid *
[<FromBodyAttribute>] options : ProcessPasswordResetRequestOptions -> ActionResult
Parameters
- id
- Type: System.Guid
The Token ID to process the password reset request for. - options
- Type: Dundas.BI.WebApi.Models.ProcessPasswordResetRequestOptions
The options for the password reset.
Return Value
Type:
ActionResult
See Also