GET api/v1/get-monthly-order-summary-date-range?clientId={clientId}&sellerId={sellerId}&fromDate={fromDate}&toDate={toDate}

Request Information

URI Parameters
NameDescriptionTypeAdditional information
clientId

integer

Required

sellerId

integer

Required

fromDate

date

Required

toDate

date

Required

Response Information

Description:

Return type: MonthlyOrderSummaryByDateRangeResponse

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