POST api/Account/PasswordRecovery

Called to request a password reset. If the specified email address corresponds to a registered user, they will be sent an email, taking them to a website where they can change their password.

Request Information

URI Parameters

None.

Body Parameters

JSON object containing the email address of the account to reset

PasswordRecoveryBindingModel
NameDescriptionTypeAdditional information
Email

string

Required

Request Formats

application/json, text/json

Sample:
{
  "Email": "sample string 1"
}

application/xml, text/xml

Sample:
<PasswordRecoveryBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PalmSmart.Models">
  <Email>sample string 1</Email>
</PasswordRecoveryBindingModel>

Response Information

Resource Description

IHttpActionResult

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.