POST api/Report/GetShipmentDeliveryReportTotalCount
Request Information
URI Parameters
None.
Body Parameters
ShipmentReportFilterModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ShipmentID | integer |
None. |
|
| IsGetAll | boolean |
None. |
|
| TrackingCode | string |
None. |
|
| PageSize | integer |
None. |
|
| PageNo | integer |
None. |
|
| RequestedUserID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ShipmentID": 1,
"IsGetAll": true,
"TrackingCode": "sample string 2",
"PageSize": 3,
"PageNo": 4,
"RequestedUserID": 1
}
application/xml, text/xml
Sample:
<ShipmentReportFilterModel 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> <IsGetAll>true</IsGetAll> <PageNo>4</PageNo> <PageSize>3</PageSize> <ShipmentID>1</ShipmentID> <TrackingCode>sample string 2</TrackingCode> </ShipmentReportFilterModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetTotalRowCountResponse| Name | 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>