POST account/reset
Validates and completes the password reset process.
Request Information
URI Parameters
None.
Body Parameters
The data needed to complete the password reset.
ResetPassword| Name | Description | Type | Additional information |
|---|---|---|---|
| Guid |
Gets or sets the required unique token used to validate the password recovery. |
globally unique identifier |
Required |
| Password |
Gets or sets the new password to apply to the account. |
string |
Required Data type: Password String length: inclusive between 4 and 100 |
Request Formats
application/json, text/json, text/html
Sample:
{
"guid": "e0a14c53-b7b8-4600-aa43-5072b2a396f2",
"password": "sample string 2"
}
application/xml, text/xml
Sample:
<ResetPassword xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tricycle.Studio.Api.Catalog.Models"> <Guid>e0a14c53-b7b8-4600-aa43-5072b2a396f2</Guid> <Password>sample string 2</Password> </ResetPassword>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
An HTTP status code indicating success or failure. Information will be returned along with failure when validation fails.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.