GET api/Examination/GetPerExamDataSource?exam_id={exam_id}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| exam_id | integer | Required | 
Body Parameters
None.
Response Information
Resource Description
BaseResponseOfGetPerExamDetailDto| Name | Description | Type | Additional information | 
|---|---|---|---|
| data | GetPerExamDetailDto | None. | |
| msg | string | None. | |
| code | integer | None. | |
| total | integer | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "data": {
    "singleTotal": 1,
    "singleRight": 2,
    "multipleTotal": 3,
    "multipleRight": 4,
    "judgmentTotal": 5,
    "judgmentRight": 6,
    "judgmentWrong": 7,
    "allTotal": 8,
    "examMinute": 9
  },
  "msg": "sample string 1",
  "code": 2,
  "total": 3
}
        application/xml, text/xml
            Sample:
<BaseResponseOfGetPerExamDetailDtogLTqVTfs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LearnAPI">
  <code>2</code>
  <msg>sample string 1</msg>
  <total>3</total>
  <data xmlns:d2p1="http://schemas.datacontract.org/2004/07/LearnAPI.ViewModel">
    <d2p1:allTotal>8</d2p1:allTotal>
    <d2p1:examMinute>9</d2p1:examMinute>
    <d2p1:judgmentRight>6</d2p1:judgmentRight>
    <d2p1:judgmentTotal>5</d2p1:judgmentTotal>
    <d2p1:judgmentWrong>7</d2p1:judgmentWrong>
    <d2p1:multipleRight>4</d2p1:multipleRight>
    <d2p1:multipleTotal>3</d2p1:multipleTotal>
    <d2p1:singleRight>2</d2p1:singleRight>
    <d2p1:singleTotal>1</d2p1:singleTotal>
  </data>
</BaseResponseOfGetPerExamDetailDtogLTqVTfs>