GET api/MrStudentTotalFee?schoolId={schoolId}&studentId={studentId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| schoolId | integer |
Required |
|
| studentId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StudentTotalFees| Name | Description | Type | Additional information |
|---|---|---|---|
| FeeType | string |
None. |
|
| FeeHeadName | string |
None. |
|
| ClType | string |
None. |
|
| Fees | integer |
None. |
Response Formats
application/json, text/json, text/html
Sample:
[
{
"feeType": "sample string 1",
"feeHeadName": "sample string 2",
"clType": "sample string 3",
"fees": 4
},
{
"feeType": "sample string 1",
"feeHeadName": "sample string 2",
"clType": "sample string 3",
"fees": 4
}
]
application/xml, text/xml
Sample:
<ArrayOfStudentTotalFees xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SchoolMaster_API.Models">
<StudentTotalFees>
<ClType>sample string 3</ClType>
<FeeHeadName>sample string 2</FeeHeadName>
<FeeType>sample string 1</FeeType>
<Fees>4</Fees>
</StudentTotalFees>
<StudentTotalFees>
<ClType>sample string 3</ClType>
<FeeHeadName>sample string 2</FeeHeadName>
<FeeType>sample string 1</FeeType>
<Fees>4</Fees>
</StudentTotalFees>
</ArrayOfStudentTotalFees>