POST api/SalesMan/CustomerRemarks

Customer Remarks

Request Information

Parameters

NameDescriptionAdditional information
beData
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "CustomerId": 2,
  "LedgerId": 3,
  "RemDate": "2024-11-18T14:34:32.8601649+05:45",
  "Remarks": "sample string 5",
  "PassKey": "sample string 6",
  "Lat": 7.1,
  "Lon": 8.1,
  "UserId": 9,
  "AgentId": 10
}

application/xml, text/xml

Sample:
<CustomerRemarks xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SalesOrderAPI.Models.BusinessEntity">
  <AgentId>10</AgentId>
  <Lat>7.1</Lat>
  <Lon>8.1</Lon>
  <PassKey>sample string 6</PassKey>
  <UserId>9</UserId>
  <CustomerId>2</CustomerId>
  <LedgerId>3</LedgerId>
  <RemDate>2024-11-18T14:34:32.8601649+05:45</RemDate>
  <Remarks>sample string 5</Remarks>
  <TranId>1</TranId>
</CustomerRemarks>

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"
}

application/xml, text/xml

Sample:
<ResponseValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SalesOrderAPI.Models.Global">
  <IsSuccess>true</IsSuccess>
  <ResponseMSG>sample string 2</ResponseMSG>
</ResponseValue>