GET api/TestPaperExtends/GetPaperProfile?paperId={paperId}

加载试卷概要

Request Information

URI Parameters

NameDescriptionTypeAdditional information
paperId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

加载试卷概要

JsonRtnDtoOfPaperProfileOutput
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

PaperProfileOutput

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "State": 100,
  "Data": {
    "PaperName": "sample string 1",
    "Grade": 2,
    "ClassName": "sample string 3",
    "ProfessionalCourseName": "sample string 4"
  }
}

text/html

Sample:
{"Msg":"sample string 1","State":100,"Data":{"PaperName":"sample string 1","Grade":2,"ClassName":"sample string 3","ProfessionalCourseName":"sample string 4"}}

application/xml, text/xml

Sample:
<JsonRtnDtoOfPaperProfileOutputv3CTEUQJ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <Data>
    <ClassName>sample string 3</ClassName>
    <Grade>2</Grade>
    <PaperName>sample string 1</PaperName>
    <ProfessionalCourseName>sample string 4</ProfessionalCourseName>
  </Data>
  <Msg>sample string 1</Msg>
  <State>Display</State>
</JsonRtnDtoOfPaperProfileOutputv3CTEUQJ>

text/javascript, application/javascript, application/json-p

Sample:
/**/ typeof  === 'function' && ({"Msg":"sample string 1","State":100,"Data":{"PaperName":"sample string 1","Grade":2,"ClassName":"sample string 3","ProfessionalCourseName":"sample string 4"}});