PUT api/LineCleaner/ResetPassword
Request Information
URI Parameters
None.
Body Parameters
APIResetPasswordName | Description | Type | Additional information |
---|---|---|---|
Status | boolean |
None. |
|
Message | string |
None. |
|
CurrentPassword | string |
None. |
|
NewPassword | string |
None. |
|
UserUniqueId | integer |
None. |
|
CustomerId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "Status": true, "Message": "sample string 2", "CurrentPassword": "sample string 3", "NewPassword": "sample string 4", "UserUniqueId": 5, "CustomerId": 6 }
application/xml, text/xml
Sample:
<APIResetPassword xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <CurrentPassword>sample string 3</CurrentPassword> <CustomerId>6</CustomerId> <Message>sample string 2</Message> <NewPassword>sample string 4</NewPassword> <Status>true</Status> <UserUniqueId>5</UserUniqueId> </APIResetPassword>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APICommonResponseName | Description | Type | Additional information |
---|---|---|---|
Status | boolean |
None. |
|
Message | string |
None. |
|
Data | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Status": true, "Message": "sample string 2", "Data": "sample string 3" }
application/xml, text/xml
Sample:
<APICommonResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <Data>sample string 3</Data> <Message>sample string 2</Message> <Status>true</Status> </APICommonResponse>