POST api/InventoryLocation/GetNonTrackableProductLocationDetailTotalCount
Request Information
URI Parameters
None.
Body Parameters
ProductLocationModelName | Description | Type | Additional information |
---|---|---|---|
ProductID | integer |
None. |
|
ProductVariantID | integer |
None. |
|
IsLocationAssigned | boolean |
None. |
|
PageSize | integer |
None. |
|
PageNo | integer |
None. |
|
OutletID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "ProductID": 1, "ProductVariantID": 2, "IsLocationAssigned": true, "PageSize": 4, "PageNo": 5, "OutletID": 6 }
application/xml, text/xml
Sample:
<ProductLocationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <IsLocationAssigned>true</IsLocationAssigned> <OutletID>6</OutletID> <PageNo>5</PageNo> <PageSize>4</PageSize> <ProductID>1</ProductID> <ProductVariantID>2</ProductVariantID> </ProductLocationModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetTotalRowCountResponseName | Description | Type | Additional information |
---|---|---|---|
TotalRowCount | integer |
None. |
|
ResponseCode | integer |
None. |
|
ResponseText | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "TotalRowCount": 1, "ResponseCode": 1, "ResponseText": "sample string 2" }
application/xml, text/xml
Sample:
<GetTotalRowCountResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Response"> <ResponseCode xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">1</ResponseCode> <ResponseText xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">sample string 2</ResponseText> <TotalRowCount>1</TotalRowCount> </GetTotalRowCountResponse>