POST api/ExamStudentMarks/GetExamlist
Request Information
URI Parameters
None.
Body Parameters
ExamChangeRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ExamIsChange | Collection of ExamIsChangeItem |
None. |
Request Formats
application/json, text/json
Sample:
{
"ExamIsChange": [
{
"StudentMasterId": "sample string 1"
},
{
"StudentMasterId": "sample string 1"
}
]
}
text/html
Sample:
{"ExamIsChange":[{"StudentMasterId":"sample string 1"},{"StudentMasterId":"sample string 1"}]}
application/xml, text/xml
Sample:
<ExamChangeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SmartInstituteSoftware.Models">
<ExamIsChange>
<ExamIsChangeItem>
<StudentMasterId>sample string 1</StudentMasterId>
</ExamIsChangeItem>
<ExamIsChangeItem>
<StudentMasterId>sample string 1</StudentMasterId>
</ExamIsChangeItem>
</ExamIsChange>
</ExamChangeRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ExamResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| ResultFlag | string |
None. |
|
| Exams | Collection of Exam |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": "sample string 1",
"ResultFlag": "sample string 2",
"Exams": [
{
"ExamId": 1,
"StudentMasterId": 2,
"ExamName": "sample string 3",
"ExamDate": "sample string 4",
"InstituteYearId": 5,
"ExamSubjects": [
{
"SubjectId": 1,
"Subject": "sample string 2",
"MaxMarks": 3,
"Marks": 4.0
},
{
"SubjectId": 1,
"Subject": "sample string 2",
"MaxMarks": 3,
"Marks": 4.0
}
]
},
{
"ExamId": 1,
"StudentMasterId": 2,
"ExamName": "sample string 3",
"ExamDate": "sample string 4",
"InstituteYearId": 5,
"ExamSubjects": [
{
"SubjectId": 1,
"Subject": "sample string 2",
"MaxMarks": 3,
"Marks": 4.0
},
{
"SubjectId": 1,
"Subject": "sample string 2",
"MaxMarks": 3,
"Marks": 4.0
}
]
}
]
}
text/html
Sample:
{"Message":"sample string 1","ResultFlag":"sample string 2","Exams":[{"ExamId":1,"StudentMasterId":2,"ExamName":"sample string 3","ExamDate":"sample string 4","InstituteYearId":5,"ExamSubjects":[{"SubjectId":1,"Subject":"sample string 2","MaxMarks":3,"Marks":4.0},{"SubjectId":1,"Subject":"sample string 2","MaxMarks":3,"Marks":4.0}]},{"ExamId":1,"StudentMasterId":2,"ExamName":"sample string 3","ExamDate":"sample string 4","InstituteYearId":5,"ExamSubjects":[{"SubjectId":1,"Subject":"sample string 2","MaxMarks":3,"Marks":4.0},{"SubjectId":1,"Subject":"sample string 2","MaxMarks":3,"Marks":4.0}]}]}
application/xml, text/xml
Sample:
<ExamResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SmartInstituteSoftware.Models">
<Exams>
<Exam>
<ExamDate>sample string 4</ExamDate>
<ExamId>1</ExamId>
<ExamName>sample string 3</ExamName>
<ExamSubjects>
<ExamSubject>
<Marks>4</Marks>
<MaxMarks>3</MaxMarks>
<Subject>sample string 2</Subject>
<SubjectId>1</SubjectId>
</ExamSubject>
<ExamSubject>
<Marks>4</Marks>
<MaxMarks>3</MaxMarks>
<Subject>sample string 2</Subject>
<SubjectId>1</SubjectId>
</ExamSubject>
</ExamSubjects>
<InstituteYearId>5</InstituteYearId>
<StudentMasterId>2</StudentMasterId>
</Exam>
<Exam>
<ExamDate>sample string 4</ExamDate>
<ExamId>1</ExamId>
<ExamName>sample string 3</ExamName>
<ExamSubjects>
<ExamSubject>
<Marks>4</Marks>
<MaxMarks>3</MaxMarks>
<Subject>sample string 2</Subject>
<SubjectId>1</SubjectId>
</ExamSubject>
<ExamSubject>
<Marks>4</Marks>
<MaxMarks>3</MaxMarks>
<Subject>sample string 2</Subject>
<SubjectId>1</SubjectId>
</ExamSubject>
</ExamSubjects>
<InstituteYearId>5</InstituteYearId>
<StudentMasterId>2</StudentMasterId>
</Exam>
</Exams>
<Message>sample string 1</Message>
<ResultFlag>sample string 2</ResultFlag>
</ExamResponse>