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