GET api/RptDaySaleStyle?companyId={companyId}&saleBranchId={saleBranchId}&makeDate={makeDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
companyId

string

Required

saleBranchId

string

Required

makeDate

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of RptDaySaleStyleEnt
NameDescriptionTypeAdditional information
StyleNo

string

None.

StyleName

string

None.

Qty

integer

None.

AvgPrice

decimal number

None.

StockQty

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "StyleNo": "sample string 1",
    "StyleName": "sample string 2",
    "Qty": 3,
    "AvgPrice": 4.0,
    "StockQty": 5
  },
  {
    "StyleNo": "sample string 1",
    "StyleName": "sample string 2",
    "Qty": 3,
    "AvgPrice": 4.0,
    "StockQty": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOfRptDaySaleStyleEnt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WxApi.Models">
  <RptDaySaleStyleEnt>
    <AvgPrice>4</AvgPrice>
    <Qty>3</Qty>
    <StockQty>5</StockQty>
    <StyleName>sample string 2</StyleName>
    <StyleNo>sample string 1</StyleNo>
  </RptDaySaleStyleEnt>
  <RptDaySaleStyleEnt>
    <AvgPrice>4</AvgPrice>
    <Qty>3</Qty>
    <StockQty>5</StockQty>
    <StyleName>sample string 2</StyleName>
    <StyleNo>sample string 1</StyleNo>
  </RptDaySaleStyleEnt>
</ArrayOfRptDaySaleStyleEnt>