GET api/ProductsAboveAveragePrice/{id}
Returns a ProductsAboveAveragePrice record based on specified ID
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The ID of ProductsAboveAveragePrice data |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
ProductsAboveAveragePriceDataName | Description | Type | Additional information |
---|---|---|---|
ProductName | string |
None. |
|
UnitPrice | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{ "ProductName": "sample string 1", "UnitPrice": 2.0 }
text/xml
Sample:
<ProductsAboveAveragePriceData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NorthwindAPI.Models"> <ProductName>sample string 1</ProductName> <UnitPrice>2</UnitPrice> </ProductsAboveAveragePriceData>