POST api/Report/GetTrackableProductLocationDetailTotalCountReport
Request Information
URI Parameters
None.
Body Parameters
ProductLocationReportModelName | Description | Type | Additional information |
---|---|---|---|
ProductID | integer |
None. |
|
ProductVariantID | integer |
None. |
|
LocationStatus | integer |
None. |
|
PageSize | integer |
None. |
|
PageNo | integer |
None. |
|
OutletID | integer |
None. |
|
Search | string |
None. |
|
RequestedUserID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "ProductID": 1, "ProductVariantID": 2, "LocationStatus": 3, "PageSize": 4, "PageNo": 5, "OutletID": 6, "Search": "sample string 7", "RequestedUserID": 1 }
application/xml, text/xml
Sample:
<ProductLocationReportModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <RequestedUserID xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Request">1</RequestedUserID> <LocationStatus>3</LocationStatus> <OutletID>6</OutletID> <PageNo>5</PageNo> <PageSize>4</PageSize> <ProductID>1</ProductID> <ProductVariantID>2</ProductVariantID> <Search>sample string 7</Search> </ProductLocationReportModel>
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>