PUT api/Account/ResetPassword/{affiliateId}
Resets user password if he forgets it - old password not required.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
affiliateId | integer |
Required |
|
v |
The requested API version |
string |
Required Default value is 1 |
Body Parameters
Reset password model containing Token and NewPassword
FilmFlex.Platform.Common.API.Contracts.V2.ResetUserPasswordDTOName | Description | Type | Additional information |
---|---|---|---|
Token |
The token generated for password reset |
string |
Required |
NewPassword |
The new user password |
string |
Required |
Request Formats
application/json, text/json
Sample:
{ "Token": "sample string 1", "NewPassword": "sample string 2" }
Response Information
Resource Description
Resets user password if he forgets it - old password not required.
System.Web.Http.IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.