GET api/v1/get-monthly-sales-profit-summary?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: MonthlySalesProfitSummaryResponse

Response Formats
{
  "MonthlySalesProfitSummaryList": [
    {
      "MonthYear": "sample string 1",
      "OrderAmount": 2.0,
      "Profit": 3.0
    },
    {
      "MonthYear": "sample string 1",
      "OrderAmount": 2.0,
      "Profit": 3.0
    }
  ]
}
{"MonthlySalesProfitSummaryList":[{"MonthYear":"sample string 1","OrderAmount":2.0,"Profit":3.0},{"MonthYear":"sample string 1","OrderAmount":2.0,"Profit":3.0}]}
<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>