GET api/FeeSetupSetting

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of FeeSetup
NameDescriptionTypeAdditional information
Id

integer

None.

AdmissionYear

integer

None.

MiscGroupId

integer

None.

OtherFeeGroupId

integer

None.

TermId

integer

None.

Category

string

String length: inclusive between 0 and 50

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "admissionYear": 2,
    "miscGroupId": 3,
    "otherFeeGroupId": 4,
    "termId": 5,
    "category": "sample string 6"
  },
  {
    "id": 1,
    "admissionYear": 2,
    "miscGroupId": 3,
    "otherFeeGroupId": 4,
    "termId": 5,
    "category": "sample string 6"
  }
]

text/html

Sample:
[{"id":1,"admissionYear":2,"miscGroupId":3,"otherFeeGroupId":4,"termId":5,"category":"sample string 6"},{"id":1,"admissionYear":2,"miscGroupId":3,"otherFeeGroupId":4,"termId":5,"category":"sample string 6"}]

application/xml, text/xml

Sample:
<ArrayOfFeeSetup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <FeeSetup>
    <AdmissionYear>2</AdmissionYear>
    <Category>sample string 6</Category>
    <Id>1</Id>
    <MiscGroupId>3</MiscGroupId>
    <OtherFeeGroupId>4</OtherFeeGroupId>
    <TermId>5</TermId>
  </FeeSetup>
  <FeeSetup>
    <AdmissionYear>2</AdmissionYear>
    <Category>sample string 6</Category>
    <Id>1</Id>
    <MiscGroupId>3</MiscGroupId>
    <OtherFeeGroupId>4</OtherFeeGroupId>
    <TermId>5</TermId>
  </FeeSetup>
</ArrayOfFeeSetup>