GET api/SalesTotalsbyAmount

Returns list of all SalesTotalsbyAmount Data

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SalesTotalsbyAmountData
NameDescriptionTypeAdditional 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-07-04T12:44:05.8452248-07:00"
  },
  {
    "SaleAmount": 1.0,
    "OrderID": 2,
    "CompanyName": "sample string 3",
    "ShippedDate": "2025-07-04T12:44:05.8452248-07:00"
  }
]

text/xml

Sample:
<ArrayOfSalesTotalsbyAmountData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NorthwindAPI.Models">
  <SalesTotalsbyAmountData>
    <CompanyName>sample string 3</CompanyName>
    <OrderID>2</OrderID>
    <SaleAmount>1</SaleAmount>
    <ShippedDate>2025-07-04T12:44:05.8452248-07:00</ShippedDate>
  </SalesTotalsbyAmountData>
  <SalesTotalsbyAmountData>
    <CompanyName>sample string 3</CompanyName>
    <OrderID>2</OrderID>
    <SaleAmount>1</SaleAmount>
    <ShippedDate>2025-07-04T12:44:05.8452248-07:00</ShippedDate>
  </SalesTotalsbyAmountData>
</ArrayOfSalesTotalsbyAmountData>