GET
api/v1/get-monthly-sales-profit-summary?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: MonthlySalesProfitSummaryResponse
Response Formats
application/json, text/json
{
"MonthlySalesProfitSummaryList": [
{
"MonthYear": "sample string 1",
"OrderAmount": 2.0,
"Profit": 3.0
},
{
"MonthYear": "sample string 1",
"OrderAmount": 2.0,
"Profit": 3.0
}
]
}
text/html
{"MonthlySalesProfitSummaryList":[{"MonthYear":"sample string 1","OrderAmount":2.0,"Profit":3.0},{"MonthYear":"sample string 1","OrderAmount":2.0,"Profit":3.0}]}
application/xml, text/xml
<MonthlySalesProfitSummaryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Report">
<MonthlySalesProfitSummaryList>
<MonthlySalesProfitSummary>
<MonthYear>sample string 1</MonthYear>
<OrderAmount>2</OrderAmount>
<Profit>3</Profit>
</MonthlySalesProfitSummary>
<MonthlySalesProfitSummary>
<MonthYear>sample string 1</MonthYear>
<OrderAmount>2</OrderAmount>
<Profit>3</Profit>
</MonthlySalesProfitSummary>
</MonthlySalesProfitSummaryList>
</MonthlySalesProfitSummaryResponse>
