POST BusineesAnalysis/GetProductAnalysis

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
request
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "MenuOption": "sample string 1",
  "StartDate": "sample string 2",
  "EndDate": "sample string 3",
  "AcYear": "sample string 4"
}

text/html

Sample:
{"MenuOption":"sample string 1","StartDate":"sample string 2","EndDate":"sample string 3","AcYear":"sample string 4"}

application/xml, text/xml

Sample:
<SalesInfoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Controllers">
  <AcYear>sample string 4</AcYear>
  <EndDate>sample string 3</EndDate>
  <MenuOption>sample string 1</MenuOption>
  <StartDate>sample string 2</StartDate>
</SalesInfoRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
[
  {
    "StkpCode": "sample string 1",
    "StkpDesc": "sample string 2",
    "CurAmt": 3.1
  },
  {
    "StkpCode": "sample string 1",
    "StkpDesc": "sample string 2",
    "CurAmt": 3.1
  },
  {
    "StkpCode": "sample string 1",
    "StkpDesc": "sample string 2",
    "CurAmt": 3.1
  }
]

text/html

Sample:
[{"StkpCode":"sample string 1","StkpDesc":"sample string 2","CurAmt":3.1},{"StkpCode":"sample string 1","StkpDesc":"sample string 2","CurAmt":3.1},{"StkpCode":"sample string 1","StkpDesc":"sample string 2","CurAmt":3.1}]

application/xml, text/xml

Sample:
<ArrayOfSalesProductInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Controllers">
  <SalesProductInfo>
    <CurAmt>3.1</CurAmt>
    <StkpCode>sample string 1</StkpCode>
    <StkpDesc>sample string 2</StkpDesc>
  </SalesProductInfo>
  <SalesProductInfo>
    <CurAmt>3.1</CurAmt>
    <StkpCode>sample string 1</StkpCode>
    <StkpDesc>sample string 2</StkpDesc>
  </SalesProductInfo>
  <SalesProductInfo>
    <CurAmt>3.1</CurAmt>
    <StkpCode>sample string 1</StkpCode>
    <StkpDesc>sample string 2</StkpDesc>
  </SalesProductInfo>
</ArrayOfSalesProductInfo>