GET api/SalesTotalsbyAmount?filterExpression={filterExpression}

Returns list of all SalesTotalsbyAmount 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 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-04T15:02:56.487372-07:00"
  },
  {
    "SaleAmount": 1.0,
    "OrderID": 2,
    "CompanyName": "sample string 3",
    "ShippedDate": "2025-07-04T15:02:56.487372-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-04T15:02:56.487372-07:00</ShippedDate>
  </SalesTotalsbyAmountData>
  <SalesTotalsbyAmountData>
    <CompanyName>sample string 3</CompanyName>
    <OrderID>2</OrderID>
    <SaleAmount>1</SaleAmount>
    <ShippedDate>2025-07-04T15:02:56.487372-07:00</ShippedDate>
  </SalesTotalsbyAmountData>
</ArrayOfSalesTotalsbyAmountData>