POST api/OrderSalesReport/GetOrderOverviewReport
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ResponseResultOfListOfOverviewReportDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| ErrorCode | string |
None. |
|
| ErrorMessage | string |
None. |
|
| Data | Collection of OverviewReportDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"ErrorCode": "sample string 2",
"ErrorMessage": "sample string 3",
"Data": [
{
"Date": "sample string 1",
"OrderTotal": 2,
"Sales": 3.0,
"CustomerTotal": 4,
"PerCustomerTransaction": 5.0
},
{
"Date": "sample string 1",
"OrderTotal": 2,
"Sales": 3.0,
"CustomerTotal": 4,
"PerCustomerTransaction": 5.0
}
]
}
application/xml, text/xml
Sample:
<ResponseResultOfArrayOfOverviewReportDtoLlPhn04F xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Willv.Common">
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/MS.Report.Model.OrderSalesReport">
<d2p1:OverviewReportDto>
<d2p1:CustomerTotal>4</d2p1:CustomerTotal>
<d2p1:Date>sample string 1</d2p1:Date>
<d2p1:OrderTotal>2</d2p1:OrderTotal>
<d2p1:PerCustomerTransaction>5</d2p1:PerCustomerTransaction>
<d2p1:Sales>3</d2p1:Sales>
</d2p1:OverviewReportDto>
<d2p1:OverviewReportDto>
<d2p1:CustomerTotal>4</d2p1:CustomerTotal>
<d2p1:Date>sample string 1</d2p1:Date>
<d2p1:OrderTotal>2</d2p1:OrderTotal>
<d2p1:PerCustomerTransaction>5</d2p1:PerCustomerTransaction>
<d2p1:Sales>3</d2p1:Sales>
</d2p1:OverviewReportDto>
</Data>
<ErrorCode>sample string 2</ErrorCode>
<ErrorMessage>sample string 3</ErrorMessage>
<Status>true</Status>
</ResponseResultOfArrayOfOverviewReportDtoLlPhn04F>