GET api/CashierFee

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CashierFee
NameDescriptionTypeAdditional information
Id

integer

None.

FeeCode

string

String length: inclusive between 0 and 20

FeeDescription

string

String length: inclusive between 0 and 50

isFeePostable

boolean

None.

isOR

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "feeCode": "sample string 2",
    "feeDescription": "sample string 3",
    "isFeePostable": true,
    "isOR": true
  },
  {
    "id": 1,
    "feeCode": "sample string 2",
    "feeDescription": "sample string 3",
    "isFeePostable": true,
    "isOR": true
  }
]

text/html

Sample:
[{"id":1,"feeCode":"sample string 2","feeDescription":"sample string 3","isFeePostable":true,"isOR":true},{"id":1,"feeCode":"sample string 2","feeDescription":"sample string 3","isFeePostable":true,"isOR":true}]

application/xml, text/xml

Sample:
<ArrayOfCashierFee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <CashierFee>
    <FeeCode>sample string 2</FeeCode>
    <FeeDescription>sample string 3</FeeDescription>
    <Id>1</Id>
    <isFeePostable>true</isFeePostable>
    <isOR>true</isOR>
  </CashierFee>
  <CashierFee>
    <FeeCode>sample string 2</FeeCode>
    <FeeDescription>sample string 3</FeeDescription>
    <Id>1</Id>
    <isFeePostable>true</isFeePostable>
    <isOR>true</isOR>
  </CashierFee>
</ArrayOfCashierFee>