GET api/ProductsAboveAveragePrice

Returns list of all ProductsAboveAveragePrice Data

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ProductsAboveAveragePriceData
NameDescriptionTypeAdditional information
ProductName

string

None.

UnitPrice

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProductName": "sample string 1",
    "UnitPrice": 2.0
  },
  {
    "ProductName": "sample string 1",
    "UnitPrice": 2.0
  }
]

text/xml

Sample:
<ArrayOfProductsAboveAveragePriceData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NorthwindAPI.Models">
  <ProductsAboveAveragePriceData>
    <ProductName>sample string 1</ProductName>
    <UnitPrice>2</UnitPrice>
  </ProductsAboveAveragePriceData>
  <ProductsAboveAveragePriceData>
    <ProductName>sample string 1</ProductName>
    <UnitPrice>2</UnitPrice>
  </ProductsAboveAveragePriceData>
</ArrayOfProductsAboveAveragePriceData>