GET a/PosItemCategoryOrders/GetSummary?start={start}&end={end}

Get Orders information for the report period, grouped by item category.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
start

start of report period

date

Required

end

end of report period

date

Required

Body Parameters

None.

Response Information

Resource Description

Summary information on the report period

Collection of PosOrdersSummaryDTO
NameDescriptionTypeAdditional information
Label

Gets or sets the Label for this data row

string

None.

Id

Gets or sets the Id for this data row

string

None.

Quantity

Gets or sets the Quantity or count for this data row

decimal number

None.

Amount

Gets or sets the Dollar amount of orders for this data row

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "label": "sample string 1",
    "id": "sample string 2",
    "quantity": 1.1,
    "amount": 3.0
  },
  {
    "label": "sample string 1",
    "id": "sample string 2",
    "quantity": 1.1,
    "amount": 3.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfPosOrdersSummaryDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Loaded.WebApi.Models.POS">
  <PosOrdersSummaryDTO>
    <Amount>3</Amount>
    <Id>sample string 2</Id>
    <Label>sample string 1</Label>
    <Quantity>1.1</Quantity>
  </PosOrdersSummaryDTO>
  <PosOrdersSummaryDTO>
    <Amount>3</Amount>
    <Id>sample string 2</Id>
    <Label>sample string 1</Label>
    <Quantity>1.1</Quantity>
  </PosOrdersSummaryDTO>
</ArrayOfPosOrdersSummaryDTO>