GET api/SummaryofSalesbyQuarter/{id}
Returns a SummaryofSalesbyQuarter record based on specified ID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of SummaryofSalesbyQuarter data |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
SummaryofSalesbyQuarterData| Name | Description | Type | Additional information |
|---|---|---|---|
| ShippedDate | date |
None. |
|
| OrderID | integer |
None. |
|
| Subtotal | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"ShippedDate": "2025-12-05T20:41:39.7772815-08:00",
"OrderID": 1,
"Subtotal": 2.0
}
text/xml
Sample:
<SummaryofSalesbyQuarterData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NorthwindAPI.Models"> <OrderID>1</OrderID> <ShippedDate>2025-12-05T20:41:39.7772815-08:00</ShippedDate> <Subtotal>2</Subtotal> </SummaryofSalesbyQuarterData>