POST api/WxOrder/GetOrderList

Request Information

URI Parameters

None.

Body Parameters

GetOrderListRequest
NameDescriptionTypeAdditional information
pageIndex

integer

None.

pageSize

integer

None.

orderType

integer

None.

orderStatus

integer

None.

name

string

None.

orderNo

string

None.

Request Formats

application/json, text/json

Sample:
{
  "pageIndex": 1,
  "pageSize": 2,
  "orderType": 3,
  "orderStatus": 4,
  "name": "sample string 5",
  "orderNo": "sample string 6"
}

application/xml, text/xml

Sample:
<GetOrderListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TasksApi.Models">
  <Name>sample string 5</Name>
  <OrderNo>sample string 6</OrderNo>
  <OrderStatus>4</OrderStatus>
  <OrderType>3</OrderType>
  <PageIndex>1</PageIndex>
  <PageSize>2</PageSize>
</GetOrderListRequest>

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 'GetOrderListRequest'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.