POST v2/members/forgotpassword
send an email for reset password to the specified email address
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
inDto | email address, reset url and type of email to be sent |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "email": "sample string 1", "reset_url": "sample string 2", "email_type": 0 }
application/xml, text/xml
Sample:
<ForgotPasswordInDtoV2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Web.API.Models.Input.V2"> <email>sample string 1</email> <email_type>RECIT</email_type> <reset_url>sample string 2</reset_url> </ForgotPasswordInDtoV2>
application/x-www-form-urlencoded
Sample:
Sample not available.