POST v2/members/resetpassword
reset password for the user
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
inDto | member_id, new password, token etc |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "member_id": "sample string 1", "token": "sample string 2", "expiration": 3, "password": "sample string 4" }
application/xml, text/xml
Sample:
<ResetPasswordInDtoV2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Web.API.Models.Input.V2"> <expiration>3</expiration> <member_id>sample string 1</member_id> <password>sample string 4</password> <token>sample string 2</token> </ResetPasswordInDtoV2>
application/x-www-form-urlencoded
Sample:
Sample not available.