GET api/OtherGroupFee

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of OtherGroupFee
NameDescriptionTypeAdditional information
Id

integer

None.

OtherFeesGroupLibraryId

integer

None.

FeeLibraryId

integer

None.

Amount

decimal number

None.

Response Formats

application/json, text/json

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

text/html

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

application/xml, text/xml

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