GET api/RptDaySale?companyId={companyId}&userBranchId={userBranchId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
companyId

string

Required

userBranchId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of RptDaySaleEnt
NameDescriptionTypeAdditional information
MakeDate

string

None.

WeekDay

string

None.

SumQty

integer

None.

CustPayable

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "MakeDate": "sample string 1",
    "WeekDay": "sample string 2",
    "SumQty": 3,
    "CustPayable": 4.0
  },
  {
    "MakeDate": "sample string 1",
    "WeekDay": "sample string 2",
    "SumQty": 3,
    "CustPayable": 4.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfRptDaySaleEnt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WxApi.Models">
  <RptDaySaleEnt>
    <CustPayable>4</CustPayable>
    <MakeDate>sample string 1</MakeDate>
    <SumQty>3</SumQty>
    <WeekDay>sample string 2</WeekDay>
  </RptDaySaleEnt>
  <RptDaySaleEnt>
    <CustPayable>4</CustPayable>
    <MakeDate>sample string 1</MakeDate>
    <SumQty>3</SumQty>
    <WeekDay>sample string 2</WeekDay>
  </RptDaySaleEnt>
</ArrayOfRptDaySaleEnt>