GET api/SummaryofSalesbyQuarter?filterExpression={filterExpression}

Returns list of all SummaryofSalesbyQuarter Data based on specified criteria

Request Information

URI Parameters

NameDescriptionTypeAdditional information
filterExpression

Filter expression/criteria

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of SummaryofSalesbyQuarterData
NameDescriptionTypeAdditional information
ShippedDate

date

None.

OrderID

integer

None.

Subtotal

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ShippedDate": "2025-12-05T20:27:54.5158441-08:00",
    "OrderID": 1,
    "Subtotal": 2.0
  },
  {
    "ShippedDate": "2025-12-05T20:27:54.5158441-08:00",
    "OrderID": 1,
    "Subtotal": 2.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfSummaryofSalesbyQuarterData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NorthwindNg.Models">
  <SummaryofSalesbyQuarterData>
    <OrderID>1</OrderID>
    <ShippedDate>2025-12-05T20:27:54.5158441-08:00</ShippedDate>
    <Subtotal>2</Subtotal>
  </SummaryofSalesbyQuarterData>
  <SummaryofSalesbyQuarterData>
    <OrderID>1</OrderID>
    <ShippedDate>2025-12-05T20:27:54.5158441-08:00</ShippedDate>
    <Subtotal>2</Subtotal>
  </SummaryofSalesbyQuarterData>
</ArrayOfSummaryofSalesbyQuarterData>