GET api/CashierFee/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

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
}

text/html

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

application/xml, text/xml

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