GET api/otherStudentFee/GetPostedOtherFee/{termId}/{studId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
termId

integer

Required

studId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of OtherStudentFee
NameDescriptionTypeAdditional information
Id

integer

None.

TermId

integer

None.

IdCardnumber

string

String length: inclusive between 0 and 20

FeeTypeId

integer

None.

FeeId

integer

None.

Amount

decimal number

None.

Username

string

String length: inclusive between 0 and 50

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "termId": 2,
    "idCardnumber": "sample string 3",
    "feeTypeId": 4,
    "feeId": 5,
    "amount": 6.0,
    "username": "sample string 7"
  },
  {
    "id": 1,
    "termId": 2,
    "idCardnumber": "sample string 3",
    "feeTypeId": 4,
    "feeId": 5,
    "amount": 6.0,
    "username": "sample string 7"
  }
]

text/html

Sample:
[{"id":1,"termId":2,"idCardnumber":"sample string 3","feeTypeId":4,"feeId":5,"amount":6.0,"username":"sample string 7"},{"id":1,"termId":2,"idCardnumber":"sample string 3","feeTypeId":4,"feeId":5,"amount":6.0,"username":"sample string 7"}]

application/xml, text/xml

Sample:
<ArrayOfOtherStudentFee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <OtherStudentFee>
    <Amount>6</Amount>
    <FeeId>5</FeeId>
    <FeeTypeId>4</FeeTypeId>
    <Id>1</Id>
    <IdCardnumber>sample string 3</IdCardnumber>
    <TermId>2</TermId>
    <Username>sample string 7</Username>
  </OtherStudentFee>
  <OtherStudentFee>
    <Amount>6</Amount>
    <FeeId>5</FeeId>
    <FeeTypeId>4</FeeTypeId>
    <Id>1</Id>
    <IdCardnumber>sample string 3</IdCardnumber>
    <TermId>2</TermId>
    <Username>sample string 7</Username>
  </OtherStudentFee>
</ArrayOfOtherStudentFee>