POST api/Admin/ResetAgentPwd
Get Reset Agent/SalesMan Password
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
beData | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "PassKey": "sample string 1", "Token": "sample string 2", "AgentId": 3, "UserName": "sample string 4", "NewPwd": "sample string 5" }
application/xml, text/xml
Sample:
<UpdateAgentPwd xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SalesOrderAPI.Models.BusinessEntity"> <AgentId>3</AgentId> <NewPwd>sample string 5</NewPwd> <PassKey>sample string 1</PassKey> <Token>sample string 2</Token> <UserName>sample string 4</UserName> </UpdateAgentPwd>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json
Sample:
[ { "IsSuccess": true, "ResponseMSG": "sample string 2" }, { "IsSuccess": true, "ResponseMSG": "sample string 2" }, { "IsSuccess": true, "ResponseMSG": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfResponseValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SalesOrderAPI.Models.Global"> <ResponseValue> <IsSuccess>true</IsSuccess> <ResponseMSG>sample string 2</ResponseMSG> </ResponseValue> <ResponseValue> <IsSuccess>true</IsSuccess> <ResponseMSG>sample string 2</ResponseMSG> </ResponseValue> <ResponseValue> <IsSuccess>true</IsSuccess> <ResponseMSG>sample string 2</ResponseMSG> </ResponseValue> </ArrayOfResponseValue>