GET api/CurrentProductList

Returns list of all CurrentProductList Data

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CurrentProductListData
NameDescriptionTypeAdditional information
ProductID

integer

None.

ProductName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProductID": 1,
    "ProductName": "sample string 2"
  },
  {
    "ProductID": 1,
    "ProductName": "sample string 2"
  }
]

text/xml

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