GET api/RptMonthSale2?companyId={companyId}&userBranchId={userBranchId}&saleBranchs={saleBranchs}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
companyId

string

Required

userBranchId

string

Required

saleBranchs

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of RptMonthSaleEnt
NameDescriptionTypeAdditional information
FMonth

string

None.

ThisYear

decimal number

None.

LastYear

decimal number

None.

BLastYear

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "FMonth": "sample string 1",
    "ThisYear": 2.0,
    "LastYear": 3.0,
    "BLastYear": 4.0
  },
  {
    "FMonth": "sample string 1",
    "ThisYear": 2.0,
    "LastYear": 3.0,
    "BLastYear": 4.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfRptMonthSaleEnt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WxApi.Models">
  <RptMonthSaleEnt>
    <BLastYear>4</BLastYear>
    <FMonth>sample string 1</FMonth>
    <LastYear>3</LastYear>
    <ThisYear>2</ThisYear>
  </RptMonthSaleEnt>
  <RptMonthSaleEnt>
    <BLastYear>4</BLastYear>
    <FMonth>sample string 1</FMonth>
    <LastYear>3</LastYear>
    <ThisYear>2</ThisYear>
  </RptMonthSaleEnt>
</ArrayOfRptMonthSaleEnt>