GET api/MathStar/GetList/{alYear}/{trCode}/{fromExam}/{toExam}/{center}/{attendanceAvg}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
alYear | integer |
Required |
|
trCode | string |
Required |
|
fromExam | string |
Required |
|
toExam | string |
Required |
|
center | string |
Required |
|
attendanceAvg | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of MathStarName | Description | Type | Additional information |
---|---|---|---|
Rank | integer |
None. |
|
RegistationNo | string |
None. |
|
StudentName | string |
None. |
|
Average | decimal number |
None. |
|
School | string |
None. |
|
Telephone | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "rank": 1, "registationNo": "sample string 2", "studentName": "sample string 3", "average": 4.1, "school": "sample string 5", "telephone": "sample string 6" }, { "rank": 1, "registationNo": "sample string 2", "studentName": "sample string 3", "average": 4.1, "school": "sample string 5", "telephone": "sample string 6" } ]
application/xml, text/xml
Sample:
<ArrayOfMathStar xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DTO"> <MathStar> <Average>4.1</Average> <Rank>1</Rank> <RegistationNo>sample string 2</RegistationNo> <School>sample string 5</School> <StudentName>sample string 3</StudentName> <Telephone>sample string 6</Telephone> </MathStar> <MathStar> <Average>4.1</Average> <Rank>1</Rank> <RegistationNo>sample string 2</RegistationNo> <School>sample string 5</School> <StudentName>sample string 3</StudentName> <Telephone>sample string 6</Telephone> </MathStar> </ArrayOfMathStar>