POST api/v1/users/passwordreset/{requestGuid}
Resets the users password.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| requestGuid |
The password reset request UID. |
globally unique identifier |
Required |
Body Parameters
The password reset.
PasswordReset| Name | Description | Type | Additional information |
|---|---|---|---|
| Password |
The new password. |
string |
Required String length: inclusive between 0 and 255 |
Request Formats
application/json, text/json
Sample:
{
"Password": "sample string 1"
}
application/xml, text/xml
Sample:
<PasswordReset xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.Models"> <Password>sample string 1</Password> </PasswordReset>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Returns response message.
None.