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
NameDescriptionTypeAdditional 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": "2450fc1f-b5f9-4986-a452-901379534422",
  "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>2450fc1f-b5f9-4986-a452-901379534422</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.

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml, text/html

Sample:

Sample not available.