GET api/RptDaySaleBranch?companyId={companyId}&userBranchId={userBranchId}&makeDate={makeDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| companyId | string |
Required |
|
| userBranchId | string |
Required |
|
| makeDate | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of RptDaySaleBranchEnt| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchID | string |
None. |
|
| Branch | string |
None. |
|
| SumQty | integer |
None. |
|
| CustPayable | decimal number |
None. |
|
| BillCount | integer |
None. |
|
| BillPrice | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"BranchID": "sample string 1",
"Branch": "sample string 2",
"SumQty": 3,
"CustPayable": 4.0,
"BillCount": 5,
"BillPrice": 6
},
{
"BranchID": "sample string 1",
"Branch": "sample string 2",
"SumQty": 3,
"CustPayable": 4.0,
"BillCount": 5,
"BillPrice": 6
}
]
application/xml, text/xml
Sample:
<ArrayOfRptDaySaleBranchEnt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WxApi.Models">
<RptDaySaleBranchEnt>
<BillCount>5</BillCount>
<BillPrice>6</BillPrice>
<Branch>sample string 2</Branch>
<BranchID>sample string 1</BranchID>
<CustPayable>4</CustPayable>
<SumQty>3</SumQty>
</RptDaySaleBranchEnt>
<RptDaySaleBranchEnt>
<BillCount>5</BillCount>
<BillPrice>6</BillPrice>
<Branch>sample string 2</Branch>
<BranchID>sample string 1</BranchID>
<CustPayable>4</CustPayable>
<SumQty>3</SumQty>
</RptDaySaleBranchEnt>
</ArrayOfRptDaySaleBranchEnt>