GET DynamicTest/GetTestResultDetails?OnlineStudentAssignmentID={OnlineStudentAssignmentID}&OnlineStudentAssignmentPaperID={OnlineStudentAssignmentPaperID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| OnlineStudentAssignmentID | string |
Required |
|
| OnlineStudentAssignmentPaperID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
TestResultDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| TestResult | TestResult |
None. |
Response Formats
application/json, text/json
Sample:
{
"TestResult": {
"StatusCode": "sample string 1",
"MarksObtained": 2.0,
"TotalMarks": 3.0,
"Questions": 4,
"Attempts": 5,
"RightAnswer": 6,
"WrongAnswer": 7,
"Skipped": 8,
"TimeSpent": "sample string 9",
"Message": "sample string 10"
}
}
application/xml, text/xml
Sample:
<DynamicTest.TestResultDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities">
<TestResult>
<Attempts>5</Attempts>
<MarksObtained>2</MarksObtained>
<Message>sample string 10</Message>
<Questions>4</Questions>
<RightAnswer>6</RightAnswer>
<Skipped>8</Skipped>
<StatusCode>sample string 1</StatusCode>
<TimeSpent>sample string 9</TimeSpent>
<TotalMarks>3</TotalMarks>
<WrongAnswer>7</WrongAnswer>
</TestResult>
</DynamicTest.TestResultDetails>