POST api/MyOrder/GetPageData

Request Information

URI Parameters

None.

Body Parameters

OrderSearchOption
NameDescriptionTypeAdditional information
resultName

string

None.

page

integer

None.

limit

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "resultName": "sample string 1",
  "page": 2,
  "limit": 3
}

application/xml, text/xml

Sample:
<OrderSearchOption xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fsh.Core.Models.Other">
  <limit>3</limit>
  <page>2</page>
  <resultName>sample string 1</resultName>
</OrderSearchOption>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResult
NameDescriptionTypeAdditional information
code

integer

None.

msg

string

None.

count

integer

None.

data

Object

None.

otherdata

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "code": 1,
  "msg": "sample string 2",
  "count": 1,
  "data": {},
  "otherdata": {}
}

application/xml, text/xml

Sample:
<ApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fsh.Core.Models.Other">
  <code>1</code>
  <count>1</count>
  <data />
  <msg>sample string 2</msg>
  <otherdata />
</ApiResult>