GET
api/v1/get-monthly-order-summary-date-range?clientId={clientId}&sellerId={sellerId}&fromDate={fromDate}&toDate={toDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId | integer |
Required |
|
| sellerId | integer |
Required |
|
| fromDate | date |
Required |
|
| toDate | date |
Required |
Response Information
Description:
Return type: MonthlyOrderSummaryByDateRangeResponse
Response Formats
application/json, text/json
{
"MonthlyOrderSummaryByDateRangesList": [
{
"MonthYear": "sample string 1",
"TotalOrderAmount": 2.0
},
{
"MonthYear": "sample string 1",
"TotalOrderAmount": 2.0
}
]
}
text/html
{"MonthlyOrderSummaryByDateRangesList":[{"MonthYear":"sample string 1","TotalOrderAmount":2.0},{"MonthYear":"sample string 1","TotalOrderAmount":2.0}]}
application/xml, text/xml
<MonthlyOrderSummaryByDateRangeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Report">
<MonthlyOrderSummaryByDateRangesList>
<MonthlyOrderSummaryByDateRange>
<MonthYear>sample string 1</MonthYear>
<TotalOrderAmount>2</TotalOrderAmount>
</MonthlyOrderSummaryByDateRange>
<MonthlyOrderSummaryByDateRange>
<MonthYear>sample string 1</MonthYear>
<TotalOrderAmount>2</TotalOrderAmount>
</MonthlyOrderSummaryByDateRange>
</MonthlyOrderSummaryByDateRangesList>
</MonthlyOrderSummaryByDateRangeResponse>
