POST api/Order/OrderdetailsQueryList

Request Information

URI Parameters

None.

Body Parameters

DataPage
NameDescriptionTypeAdditional information
PageIndex

integer

None.

PageSize

integer

None.

StartDate

string

None.

EndDate

string

None.

Query

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PageIndex": 1,
  "PageSize": 2,
  "StartDate": "sample string 3",
  "EndDate": "sample string 4",
  "Query": "sample string 5"
}

application/xml, text/xml

Sample:
<DataPage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YNF.Service.Models">
  <EndDate>sample string 4</EndDate>
  <PageIndex>1</PageIndex>
  <PageSize>2</PageSize>
  <Query>sample string 5</Query>
  <StartDate>sample string 3</StartDate>
</DataPage>

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

Response Information

Resource Description

ResultModel
NameDescriptionTypeAdditional information
IsSucceed

boolean

None.

MessageCode

integer

None.

Message

string

None.

Time

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSucceed": true,
  "MessageCode": 2,
  "Message": "sample string 3",
  "Time": "sample string 4",
  "Data": {}
}

application/xml, text/xml

Sample:
<ResultModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YNF.Model">
  <Data />
  <IsSucceed>true</IsSucceed>
  <Message>sample string 3</Message>
  <MessageCode>2</MessageCode>
  <Time>sample string 4</Time>
</ResultModel>