GET api/Watches/GetProposedStock

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of WatchesProposedStock
NameDescriptionTypeAdditional information
StoreCode

integer

None.

StoreName

string

None.

BrandCode

integer

None.

BrandName

string

None.

ProposedQty

integer

None.

ProposedValue

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "StoreCode": 1,
    "StoreName": "sample string 2",
    "BrandCode": 3,
    "BrandName": "sample string 4",
    "ProposedQty": 5,
    "ProposedValue": 6.0
  },
  {
    "StoreCode": 1,
    "StoreName": "sample string 2",
    "BrandCode": 3,
    "BrandName": "sample string 4",
    "ProposedQty": 5,
    "ProposedValue": 6.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfWatchesProposedStock xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models">
  <WatchesProposedStock>
    <BrandCode>3</BrandCode>
    <BrandName>sample string 4</BrandName>
    <ProposedQty>5</ProposedQty>
    <ProposedValue>6</ProposedValue>
    <StoreCode>1</StoreCode>
    <StoreName>sample string 2</StoreName>
  </WatchesProposedStock>
  <WatchesProposedStock>
    <BrandCode>3</BrandCode>
    <BrandName>sample string 4</BrandName>
    <ProposedQty>5</ProposedQty>
    <ProposedValue>6</ProposedValue>
    <StoreCode>1</StoreCode>
    <StoreName>sample string 2</StoreName>
  </WatchesProposedStock>
</ArrayOfWatchesProposedStock>