GET api/Exam/ListMyExamResult?page={page}&pageSize={pageSize}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
page

integer

Required

pageSize

integer

Required

Body Parameters

None.

Response Information

Resource Description

BaseResponseOfListOfExtExamData
NameDescriptionTypeAdditional information
data

Collection of ExtExamData

None.

msg

string

None.

code

integer

None.

total

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "data": [
    {
      "id": 1,
      "name": "sample string 2",
      "remark": "sample string 3",
      "core": 4,
      "PassCore": 5,
      "NShowDept": 1
    },
    {
      "id": 1,
      "name": "sample string 2",
      "remark": "sample string 3",
      "core": 4,
      "PassCore": 5,
      "NShowDept": 1
    }
  ],
  "msg": "sample string 1",
  "code": 2,
  "total": 3
}

application/xml, text/xml

Sample:
<BaseResponseOfArrayOfExtExamDatawByyLw_Px 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>
    <ExtExamData>
      <NShowDept>1</NShowDept>
      <PassCore>5</PassCore>
      <core>4</core>
      <id>1</id>
      <name>sample string 2</name>
      <remark>sample string 3</remark>
    </ExtExamData>
    <ExtExamData>
      <NShowDept>1</NShowDept>
      <PassCore>5</PassCore>
      <core>4</core>
      <id>1</id>
      <name>sample string 2</name>
      <remark>sample string 3</remark>
    </ExtExamData>
  </data>
</BaseResponseOfArrayOfExtExamDatawByyLw_Px>