GET api/Performance/GetExamResult/{center}/{exam}/{cutOutMark}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| center | string |
Required |
|
| exam | string |
Required |
|
| cutOutMark | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Performance| Name | Description | Type | Additional information |
|---|---|---|---|
| Rank | integer |
None. |
|
| StudentName | string |
None. |
|
| Mark | decimal number |
None. |
|
| School | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"rank": 1,
"studentName": "sample string 2",
"mark": 3.1,
"school": "sample string 4"
},
{
"rank": 1,
"studentName": "sample string 2",
"mark": 3.1,
"school": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfPerformance xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DTO">
<Performance>
<Mark>3.1</Mark>
<Rank>1</Rank>
<School>sample string 4</School>
<StudentName>sample string 2</StudentName>
</Performance>
<Performance>
<Mark>3.1</Mark>
<Rank>1</Rank>
<School>sample string 4</School>
<StudentName>sample string 2</StudentName>
</Performance>
</ArrayOfPerformance>