POST Account/RequestPasswordReset

Used to generate a temp password -> look at the success indicator on the returned model

Request Information

URI Parameters

None.

Body Parameters

ForgotPasswordBindingModel
NameDescriptionTypeAdditional information
Email

The email must be a registered username on the system

string

Required

Return_Message

this is a return message - might contain errors, or a success message

string

None.

WasSuccessfull

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "Return_Message": "sample string 2",
  "WasSuccessfull": true
}

application/xml, text/xml

Sample:
<ForgotPasswordBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub.Server.Models">
  <Email>sample string 1</Email>
  <Return_Message>sample string 2</Return_Message>
  <WasSuccessfull>true</WasSuccessfull>
</ForgotPasswordBindingModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ForgotPasswordBindingModel
NameDescriptionTypeAdditional information
Email

The email must be a registered username on the system

string

Required

Return_Message

this is a return message - might contain errors, or a success message

string

None.

WasSuccessfull

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "Return_Message": "sample string 2",
  "WasSuccessfull": true
}

application/xml, text/xml

Sample:
<ForgotPasswordBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub.Server.Models">
  <Email>sample string 1</Email>
  <Return_Message>sample string 2</Return_Message>
  <WasSuccessfull>true</WasSuccessfull>
</ForgotPasswordBindingModel>