GET r/Tills
Get a list of tills from the company database.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of tills
Collection of PosListDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Id of item |
string |
None. |
| Label |
Item label |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": "sample string 1",
"label": "sample string 2"
},
{
"id": "sample string 1",
"label": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfPosListDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Loaded.WebApi.Models.POS">
<PosListDTO>
<Id>sample string 1</Id>
<Label>sample string 2</Label>
</PosListDTO>
<PosListDTO>
<Id>sample string 1</Id>
<Label>sample string 2</Label>
</PosListDTO>
</ArrayOfPosListDTO>