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