GET lmsService/getPaperCorrectionData?subjectivePaperCorrectionSummaryId={subjectivePaperCorrectionSummaryId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| subjectivePaperCorrectionSummaryId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
PaperCorrectionData| Name | Description | Type | Additional information |
|---|---|---|---|
| SubjectivePaperCorrectionSummaryId | string |
None. |
|
| TotalMarksScored | decimal number |
None. |
|
| PaperData | Collection of AnswerSheetCorrectionData |
None. |
Response Formats
application/json, text/json
Sample:
{
"SubjectivePaperCorrectionSummaryId": "sample string 1",
"TotalMarksScored": 2.0,
"PaperData": [
{
"SubjectivePaperCorrectionAnswerSheetId": "sample string 1",
"CorrectionDetails": {}
},
{
"SubjectivePaperCorrectionAnswerSheetId": "sample string 1",
"CorrectionDetails": {}
}
]
}
application/xml, text/xml
Sample:
<ContentActivityEntity.PaperCorrectionData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities">
<PaperData>
<ContentActivityEntity.AnswerSheetCorrectionData>
<CorrectionDetails />
<SubjectivePaperCorrectionAnswerSheetId>sample string 1</SubjectivePaperCorrectionAnswerSheetId>
</ContentActivityEntity.AnswerSheetCorrectionData>
<ContentActivityEntity.AnswerSheetCorrectionData>
<CorrectionDetails />
<SubjectivePaperCorrectionAnswerSheetId>sample string 1</SubjectivePaperCorrectionAnswerSheetId>
</ContentActivityEntity.AnswerSheetCorrectionData>
</PaperData>
<SubjectivePaperCorrectionSummaryId>sample string 1</SubjectivePaperCorrectionSummaryId>
<TotalMarksScored>2</TotalMarksScored>
</ContentActivityEntity.PaperCorrectionData>