GET api/v1/exams/getAvialableStudents/{studentTerm}/{examInstanceId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| studentTerm | string |
Required |
|
| examInstanceId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GetStudentsByNameOrSSNModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| SSN | string |
None. |
|
| YearId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"FirstName": "sample string 1",
"LastName": "sample string 2",
"SSN": "sample string 3",
"YearId": 1
},
{
"Id": 1,
"FirstName": "sample string 1",
"LastName": "sample string 2",
"SSN": "sample string 3",
"YearId": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfGetStudentsByNameOrSSNModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Emalogic.Conservatory.Common.Models">
<GetStudentsByNameOrSSNModel>
<FirstName>sample string 1</FirstName>
<Id>1</Id>
<LastName>sample string 2</LastName>
<SSN>sample string 3</SSN>
<YearId>1</YearId>
</GetStudentsByNameOrSSNModel>
<GetStudentsByNameOrSSNModel>
<FirstName>sample string 1</FirstName>
<Id>1</Id>
<LastName>sample string 2</LastName>
<SSN>sample string 3</SSN>
<YearId>1</YearId>
</GetStudentsByNameOrSSNModel>
</ArrayOfGetStudentsByNameOrSSNModel>