GET api/FeeLibrary

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of FeeLibrary
NameDescriptionTypeAdditional information
Id

integer

None.

Code

string

String length: inclusive between 0 and 20

Description

string

String length: inclusive between 0 and 100

isDiscountable

boolean

None.

isPostable

boolean

None.

FeeTypeId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "code": "sample string 2",
    "description": "sample string 3",
    "isDiscountable": true,
    "isPostable": true,
    "feeTypeId": 6
  },
  {
    "id": 1,
    "code": "sample string 2",
    "description": "sample string 3",
    "isDiscountable": true,
    "isPostable": true,
    "feeTypeId": 6
  }
]

text/html

Sample:
[{"id":1,"code":"sample string 2","description":"sample string 3","isDiscountable":true,"isPostable":true,"feeTypeId":6},{"id":1,"code":"sample string 2","description":"sample string 3","isDiscountable":true,"isPostable":true,"feeTypeId":6}]

application/xml, text/xml

Sample:
<ArrayOfFeeLibrary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <FeeLibrary>
    <Code>sample string 2</Code>
    <Description>sample string 3</Description>
    <FeeTypeId>6</FeeTypeId>
    <Id>1</Id>
    <isDiscountable>true</isDiscountable>
    <isPostable>true</isPostable>
  </FeeLibrary>
  <FeeLibrary>
    <Code>sample string 2</Code>
    <Description>sample string 3</Description>
    <FeeTypeId>6</FeeTypeId>
    <Id>1</Id>
    <isDiscountable>true</isDiscountable>
    <isPostable>true</isPostable>
  </FeeLibrary>
</ArrayOfFeeLibrary>