GET api/TillMenu/PriceBreaksDump/{PageSize}/{PageRequired}
Iterates all the Price Lists in the database. Used mainly for exporting all information to till for offline use.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PageSize | integer |
Required |
|
| PageRequired | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EskimoClassLibraries.clsTillMenuPriceListItem| Name | Description | Type | Additional information |
|---|---|---|---|
| PLU | string |
Required |
|
| Qty | integer |
None. |
|
| Price | decimal number |
None. |
|
| PriceListID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"PLU": "sample string 1",
"Qty": 2,
"Price": 3.0,
"PriceListID": 4
},
{
"PLU": "sample string 1",
"Qty": 2,
"Price": 3.0,
"PriceListID": 4
}
]
application/xml, text/xml
Sample:
<ArrayOfclsTillMenuPriceListItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EskimoClassLibraries">
<clsTillMenuPriceListItem>
<PLU>sample string 1</PLU>
<Price>3</Price>
<PriceListID>4</PriceListID>
<Qty>2</Qty>
</clsTillMenuPriceListItem>
<clsTillMenuPriceListItem>
<PLU>sample string 1</PLU>
<Price>3</Price>
<PriceListID>4</PriceListID>
<Qty>2</Qty>
</clsTillMenuPriceListItem>
</ArrayOfclsTillMenuPriceListItem>