GET api/FeeType

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of FeeType
NameDescriptionTypeAdditional information
FeeTypeId

integer

None.

Type

string

String length: inclusive between 0 and 50

Response Formats

application/json, text/json

Sample:
[
  {
    "feeTypeId": 1,
    "type": "sample string 2"
  },
  {
    "feeTypeId": 1,
    "type": "sample string 2"
  }
]

text/html

Sample:
[{"feeTypeId":1,"type":"sample string 2"},{"feeTypeId":1,"type":"sample string 2"}]

application/xml, text/xml

Sample:
<ArrayOfFeeType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <FeeType>
    <FeeTypeId>1</FeeTypeId>
    <Type>sample string 2</Type>
  </FeeType>
  <FeeType>
    <FeeTypeId>1</FeeTypeId>
    <Type>sample string 2</Type>
  </FeeType>
</ArrayOfFeeType>