GET api/or

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ORSetting
NameDescriptionTypeAdditional information
Id

integer

None.

CashierName

string

String length: inclusive between 0 and 50

ORStart

decimal number

None.

ORFinish

decimal number

None.

ORCurrent

decimal number

None.

ARStart

decimal number

None.

ARFinish

decimal number

None.

ARCurrent

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "cashierName": "sample string 2",
    "orStart": 3.1,
    "orFinish": 4.1,
    "orCurrent": 5.1,
    "arStart": 6.1,
    "arFinish": 7.1,
    "arCurrent": 8.1
  },
  {
    "id": 1,
    "cashierName": "sample string 2",
    "orStart": 3.1,
    "orFinish": 4.1,
    "orCurrent": 5.1,
    "arStart": 6.1,
    "arFinish": 7.1,
    "arCurrent": 8.1
  }
]

text/html

Sample:
[{"id":1,"cashierName":"sample string 2","orStart":3.1,"orFinish":4.1,"orCurrent":5.1,"arStart":6.1,"arFinish":7.1,"arCurrent":8.1},{"id":1,"cashierName":"sample string 2","orStart":3.1,"orFinish":4.1,"orCurrent":5.1,"arStart":6.1,"arFinish":7.1,"arCurrent":8.1}]

application/xml, text/xml

Sample:
<ArrayOfORSetting xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <ORSetting>
    <ARCurrent>8.1</ARCurrent>
    <ARFinish>7.1</ARFinish>
    <ARStart>6.1</ARStart>
    <CashierName>sample string 2</CashierName>
    <Id>1</Id>
    <ORCurrent>5.1</ORCurrent>
    <ORFinish>4.1</ORFinish>
    <ORStart>3.1</ORStart>
  </ORSetting>
  <ORSetting>
    <ARCurrent>8.1</ARCurrent>
    <ARFinish>7.1</ARFinish>
    <ARStart>6.1</ARStart>
    <CashierName>sample string 2</CashierName>
    <Id>1</Id>
    <ORCurrent>5.1</ORCurrent>
    <ORFinish>4.1</ORFinish>
    <ORStart>3.1</ORStart>
  </ORSetting>
</ArrayOfORSetting>