GET api/SubjectFee

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SubjectFee
NameDescriptionTypeAdditional information
Id

integer

None.

TermId

integer

None.

AdmissionYear

integer

None.

TypeId

integer

None.

SubjCode

string

String length: inclusive between 0 and 20

Amount

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "termId": 2,
    "admissionYear": 3,
    "typeId": 4,
    "subjCode": "sample string 5",
    "amount": 6.0
  },
  {
    "id": 1,
    "termId": 2,
    "admissionYear": 3,
    "typeId": 4,
    "subjCode": "sample string 5",
    "amount": 6.0
  }
]

text/html

Sample:
[{"id":1,"termId":2,"admissionYear":3,"typeId":4,"subjCode":"sample string 5","amount":6.0},{"id":1,"termId":2,"admissionYear":3,"typeId":4,"subjCode":"sample string 5","amount":6.0}]

application/xml, text/xml

Sample:
<ArrayOfSubjectFee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <SubjectFee>
    <AdmissionYear>3</AdmissionYear>
    <Amount>6</Amount>
    <Id>1</Id>
    <SubjCode>sample string 5</SubjCode>
    <TermId>2</TermId>
    <TypeId>4</TypeId>
  </SubjectFee>
  <SubjectFee>
    <AdmissionYear>3</AdmissionYear>
    <Amount>6</Amount>
    <Id>1</Id>
    <SubjCode>sample string 5</SubjCode>
    <TermId>2</TermId>
    <TypeId>4</TypeId>
  </SubjectFee>
</ArrayOfSubjectFee>