POST api/Reprot/GetTodayTreeStatistics

Request Information

URI Parameters

None.

Body Parameters

ReportQuertModel
NameDescriptionTypeAdditional information
Query

string

None.

DateType

DateType

None.

Request Formats

application/json, text/json

Sample:
{
  "Query": "sample string 1",
  "DateType": 0
}

application/xml, text/xml

Sample:
<ReportQuertModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YNF.Service.Models">
  <DateType>Day</DateType>
  <Query>sample string 1</Query>
</ReportQuertModel>

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

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>