GET api/RptMonthDaySale2?companyId={companyId}&userBranchId={userBranchId}&saleBranchs={saleBranchs}&fyear={fyear}&fmonth={fmonth}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| companyId | string |
Required |
|
| userBranchId | string |
Required |
|
| saleBranchs | string |
Required |
|
| fyear | integer |
Required |
|
| fmonth | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of RptDaySaleEnt| Name | Description | Type | Additional 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>