GET api/Product

No documentation available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
[
  {
    "ProductId": 1.1,
    "Name": "sample string 2",
    "PlanName": "sample string 3",
    "EPrice": 4.1
  },
  {
    "ProductId": 1.1,
    "Name": "sample string 2",
    "PlanName": "sample string 3",
    "EPrice": 4.1
  },
  {
    "ProductId": 1.1,
    "Name": "sample string 2",
    "PlanName": "sample string 3",
    "EPrice": 4.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfProduct xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Crew.WebService.Models">
  <Product>
    <EPrice>4.1</EPrice>
    <Name>sample string 2</Name>
    <PlanName>sample string 3</PlanName>
    <ProductId>1.1</ProductId>
  </Product>
  <Product>
    <EPrice>4.1</EPrice>
    <Name>sample string 2</Name>
    <PlanName>sample string 3</PlanName>
    <ProductId>1.1</ProductId>
  </Product>
  <Product>
    <EPrice>4.1</EPrice>
    <Name>sample string 2</Name>
    <PlanName>sample string 3</PlanName>
    <ProductId>1.1</ProductId>
  </Product>
</ArrayOfProduct>