GET api/SalesTotalsbyAmount
Returns list of all SalesTotalsbyAmount Data
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of SalesTotalsbyAmountData| Name | Description | Type | Additional information |
|---|---|---|---|
| SaleAmount | decimal number |
None. |
|
| OrderID | integer |
None. |
|
| CompanyName | string |
None. |
|
| ShippedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SaleAmount": 1.0,
"OrderID": 2,
"CompanyName": "sample string 3",
"ShippedDate": "2025-12-05T20:28:25.1951393-08:00"
},
{
"SaleAmount": 1.0,
"OrderID": 2,
"CompanyName": "sample string 3",
"ShippedDate": "2025-12-05T20:28:25.1951393-08:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfSalesTotalsbyAmountData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NorthwindNg.Models">
<SalesTotalsbyAmountData>
<CompanyName>sample string 3</CompanyName>
<OrderID>2</OrderID>
<SaleAmount>1</SaleAmount>
<ShippedDate>2025-12-05T20:28:25.1951393-08:00</ShippedDate>
</SalesTotalsbyAmountData>
<SalesTotalsbyAmountData>
<CompanyName>sample string 3</CompanyName>
<OrderID>2</OrderID>
<SaleAmount>1</SaleAmount>
<ShippedDate>2025-12-05T20:28:25.1951393-08:00</ShippedDate>
</SalesTotalsbyAmountData>
</ArrayOfSalesTotalsbyAmountData>