POST order/list

Request Information

URI Parameters

None.

Body Parameters

FilterUserOrderList
NameDescriptionTypeAdditional information
page

integer

None.

strKeywords

string

None.

statusId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "page": 1,
  "strKeywords": "sample string 2",
  "statusId": 3
}

application/xml, text/xml

Sample:
<FilterUserOrderList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GarbageBin.Web.Controllers">
  <page>1</page>
  <statusId>3</statusId>
  <strKeywords>sample string 2</strKeywords>
</FilterUserOrderList>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'FilterUserOrderList'.

Response Information

Resource Description

RtPageListOfIOrder
NameDescriptionTypeAdditional information
data

PageDataOfIOrder

None.

code

integer

None.

msg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": {
    "totalNum": 1,
    "totalPage": 0,
    "list": null
  },
  "code": 1,
  "msg": "sample string 2"
}

application/xml, text/xml

Sample:
<RtPageListOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BaseWebApi.Model">
  <code>1</code>
  <msg>sample string 2</msg>
  <data>
    <list xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" />
    <totalNum>1</totalNum>
  </data>
</RtPageListOfanyType>