POST api/login/RecoverPassword

Request Information

URI Parameters

None.

Body Parameters

RecoverPasswordRequest
NameDescriptionTypeAdditional information
recoverToken

string

None.

newPassword

string

None.

Request Formats

application/json, text/json

Sample:
{
  "recoverToken": "sample string 1",
  "newPassword": "sample string 2"
}

application/xml, text/xml

Sample:
<RecoverPasswordRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <recoverToken>sample string 1</recoverToken>
  <newPassword>sample string 2</newPassword>
</RecoverPasswordRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean>true</boolean>