POST api/SalesMan/ChangePwd

ChangePwd function used for Agent Login Validation

Request Information

Parameters

NameDescriptionAdditional 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",
  "OldPwd": "sample string 3",
  "NewPwd": "sample string 4",
  "IsSuccess": true,
  "ResponseMSG": "sample string 6"
}

application/xml, text/xml

Sample:
<ChangePwd xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SalesOrderAPI.Models.BusinessEntity">
  <IsSuccess xmlns="http://schemas.datacontract.org/2004/07/SalesOrderAPI.Models.Global">true</IsSuccess>
  <ResponseMSG xmlns="http://schemas.datacontract.org/2004/07/SalesOrderAPI.Models.Global">sample string 6</ResponseMSG>
  <NewPwd>sample string 4</NewPwd>
  <OldPwd>sample string 3</OldPwd>
  <PassKey>sample string 1</PassKey>
  <Token>sample string 2</Token>
</ChangePwd>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "PassKey": "sample string 1",
  "Token": "sample string 2",
  "OldPwd": "sample string 3",
  "NewPwd": "sample string 4",
  "IsSuccess": true,
  "ResponseMSG": "sample string 6"
}

application/xml, text/xml

Sample:
<ChangePwd xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SalesOrderAPI.Models.BusinessEntity">
  <IsSuccess xmlns="http://schemas.datacontract.org/2004/07/SalesOrderAPI.Models.Global">true</IsSuccess>
  <ResponseMSG xmlns="http://schemas.datacontract.org/2004/07/SalesOrderAPI.Models.Global">sample string 6</ResponseMSG>
  <NewPwd>sample string 4</NewPwd>
  <OldPwd>sample string 3</OldPwd>
  <PassKey>sample string 1</PassKey>
  <Token>sample string 2</Token>
</ChangePwd>