GET api/MiscFee/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of FeesLibraryDescriptions
NameDescriptionTypeAdditional information
MiscFeesGroupLibraryId

integer

None.

FeeLibraryId

integer

None.

Amount

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "miscFeesGroupLibraryId": 1,
    "feeLibraryId": 2,
    "amount": 3.0
  },
  {
    "miscFeesGroupLibraryId": 1,
    "feeLibraryId": 2,
    "amount": 3.0
  }
]

text/html

Sample:
[{"miscFeesGroupLibraryId":1,"feeLibraryId":2,"amount":3.0},{"miscFeesGroupLibraryId":1,"feeLibraryId":2,"amount":3.0}]

application/xml, text/xml

Sample:
<ArrayOfFeesLibraryDescriptions xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Api.ViewModels">
  <FeesLibraryDescriptions>
    <Amount>3</Amount>
    <FeeLibraryId>2</FeeLibraryId>
    <MiscFeesGroupLibraryId>1</MiscFeesGroupLibraryId>
  </FeesLibraryDescriptions>
  <FeesLibraryDescriptions>
    <Amount>3</Amount>
    <FeeLibraryId>2</FeeLibraryId>
    <MiscFeesGroupLibraryId>1</MiscFeesGroupLibraryId>
  </FeesLibraryDescriptions>
</ArrayOfFeesLibraryDescriptions>