GET api/MiscGroupFee

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of MiscGroupFee
NameDescriptionTypeAdditional information
Id

integer

None.

MiscFeesGroupLibraryId

integer

None.

FeeLibraryId

integer

None.

Amount

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "miscFeesGroupLibraryId": 2,
    "feeLibraryId": 3,
    "amount": 4.0
  },
  {
    "id": 1,
    "miscFeesGroupLibraryId": 2,
    "feeLibraryId": 3,
    "amount": 4.0
  }
]

text/html

Sample:
[{"id":1,"miscFeesGroupLibraryId":2,"feeLibraryId":3,"amount":4.0},{"id":1,"miscFeesGroupLibraryId":2,"feeLibraryId":3,"amount":4.0}]

application/xml, text/xml

Sample:
<ArrayOfMiscGroupFee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <MiscGroupFee>
    <Amount>4</Amount>
    <FeeLibraryId>3</FeeLibraryId>
    <Id>1</Id>
    <MiscFeesGroupLibraryId>2</MiscFeesGroupLibraryId>
  </MiscGroupFee>
  <MiscGroupFee>
    <Amount>4</Amount>
    <FeeLibraryId>3</FeeLibraryId>
    <Id>1</Id>
    <MiscFeesGroupLibraryId>2</MiscFeesGroupLibraryId>
  </MiscGroupFee>
</ArrayOfMiscGroupFee>