POST api/print/print2

Request Information

URI Parameters

None.

Body Parameters

PrintPageParam
NameDescriptionTypeAdditional information
articleId

integer

None.

bigArticleId

integer

None.

pageNo

integer

None.

allPageNo

integer

None.

xpType

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "articleId": 1,
  "bigArticleId": 2,
  "pageNo": 3,
  "allPageNo": 4,
  "xpType": 5
}

application/xml, text/xml

Sample:
<PrintPageParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Wu.Entity.dto">
  <allPageNo>4</allPageNo>
  <articleId>1</articleId>
  <bigArticleId>2</bigArticleId>
  <pageNo>3</pageNo>
  <xpType>5</xpType>
</PrintPageParam>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultEntity
NameDescriptionTypeAdditional information
code

integer

None.

data

Object

None.

msg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "code": 1,
  "data": {},
  "msg": "sample string 3"
}

application/xml, text/xml

Sample:
<ResultEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Wu.API">
  <code>1</code>
  <data />
  <msg>sample string 3</msg>
</ResultEntity>