GET api/v1/get-monthly-order-summary?year={year}&clientId={clientId}&sellerId={sellerId}

Request Information

URI Parameters
NameDescriptionTypeAdditional information
year

integer

Required

clientId

integer

Required

sellerId

integer

Required

Response Information

Description:

Return type: MonthlyOrderSummaryResponse

Response Formats
{
  "MonthlyOrderSummaryList": [
    {
      "Month": "sample string 1",
      "TotalOrderAmount": 2.0
    },
    {
      "Month": "sample string 1",
      "TotalOrderAmount": 2.0
    }
  ]
}
{"MonthlyOrderSummaryList":[{"Month":"sample string 1","TotalOrderAmount":2.0},{"Month":"sample string 1","TotalOrderAmount":2.0}]}
<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>