GET api/Exams/examinationEndProcess/{ExamScheduleDetailId}/{ExamEnrollmentDetailsId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ExamScheduleDetailId | integer |
Required |
|
| ExamEnrollmentDetailsId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of sp_ExaminationEndProcessResult| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalMarks | decimal number |
None. |
|
| ResultStatus | integer |
None. |
|
| ShowExamMarksAfterExamEnd | integer |
None. |
|
| OutOfInternalMarks | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TotalMarks": 1.1,
"ResultStatus": 1,
"ShowExamMarksAfterExamEnd": 1,
"OutOfInternalMarks": 1.1
},
{
"TotalMarks": 1.1,
"ResultStatus": 1,
"ShowExamMarksAfterExamEnd": 1,
"OutOfInternalMarks": 1.1
}
]
application/xml, text/xml
Sample:
<ArrayOfsp_ExaminationEndProcessResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZenoxERP.Dataset">
<sp_ExaminationEndProcessResult>
<OutOfInternalMarks>1.1</OutOfInternalMarks>
<ResultStatus>1</ResultStatus>
<ShowExamMarksAfterExamEnd>1</ShowExamMarksAfterExamEnd>
<TotalMarks>1.1</TotalMarks>
</sp_ExaminationEndProcessResult>
<sp_ExaminationEndProcessResult>
<OutOfInternalMarks>1.1</OutOfInternalMarks>
<ResultStatus>1</ResultStatus>
<ShowExamMarksAfterExamEnd>1</ShowExamMarksAfterExamEnd>
<TotalMarks>1.1</TotalMarks>
</sp_ExaminationEndProcessResult>
</ArrayOfsp_ExaminationEndProcessResult>