POST api/login/LostPassword

Request Information

URI Parameters

None.

Body Parameters

LostPasswordRequest
NameDescriptionTypeAdditional information
email

Email asociado con la cuenta, si corresponde se enviara un correo

string

None.

returnPath

string

None.

OtherUser

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "email": "sample string 1",
  "returnPath": "sample string 2",
  "OtherUser": true
}

application/xml, text/xml

Sample:
<LostPasswordRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <email>sample string 1</email>
  <returnPath>sample string 2</returnPath>
  <OtherUser>true</OtherUser>
</LostPasswordRequest>

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>