GET api/QuarterlyOrders

Returns list of all QuarterlyOrders Data

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of QuarterlyOrdersData
NameDescriptionTypeAdditional information
CustomerID

string

None.

CompanyName

string

None.

City

string

None.

Country

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CustomerID": "sample string 1",
    "CompanyName": "sample string 2",
    "City": "sample string 3",
    "Country": "sample string 4"
  },
  {
    "CustomerID": "sample string 1",
    "CompanyName": "sample string 2",
    "City": "sample string 3",
    "Country": "sample string 4"
  }
]

text/xml

Sample:
<ArrayOfQuarterlyOrdersData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NorthwindAPI.Models">
  <QuarterlyOrdersData>
    <City>sample string 3</City>
    <CompanyName>sample string 2</CompanyName>
    <Country>sample string 4</Country>
    <CustomerID>sample string 1</CustomerID>
  </QuarterlyOrdersData>
  <QuarterlyOrdersData>
    <City>sample string 3</City>
    <CompanyName>sample string 2</CompanyName>
    <Country>sample string 4</Country>
    <CustomerID>sample string 1</CustomerID>
  </QuarterlyOrdersData>
</ArrayOfQuarterlyOrdersData>