GET api/admin/masters/AllFees

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of UCFeesVM
NameDescriptionTypeAdditional information
FeesID

integer

None.

FeeAmount

decimal number

None.

DistrictName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "FeesID": 1,
    "FeeAmount": 2.0,
    "DistrictName": "sample string 3"
  },
  {
    "FeesID": 1,
    "FeeAmount": 2.0,
    "DistrictName": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfUCFeesVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FireNOC.Entities.CustomModels">
  <UCFeesVM>
    <DistrictName>sample string 3</DistrictName>
    <FeeAmount>2</FeeAmount>
    <FeesID>1</FeesID>
  </UCFeesVM>
  <UCFeesVM>
    <DistrictName>sample string 3</DistrictName>
    <FeeAmount>2</FeeAmount>
    <FeesID>1</FeesID>
  </UCFeesVM>
</ArrayOfUCFeesVM>