GET api/P3PLShipmentPackage/summary/{PackageID}
Return a list of ShipmentPackage information related to the specified ShipmentPackage by going through the Shipment
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PackageID |
The ShipmentPackage Primary Key. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ShipSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| BasePackageID | integer |
None. |
|
| ShipmentID | integer |
None. |
|
| ShipPackageID | integer |
None. |
|
| TrackingNumber | string |
None. |
|
| BillWeight | decimal number |
None. |
|
| PackageNumber | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"BasePackageID": 1,
"ShipmentID": 2,
"ShipPackageID": 3,
"TrackingNumber": "sample string 4",
"BillWeight": 5.0,
"PackageNumber": "sample string 6"
},
{
"BasePackageID": 1,
"ShipmentID": 2,
"ShipPackageID": 3,
"TrackingNumber": "sample string 4",
"BillWeight": 5.0,
"PackageNumber": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfShipSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Tables">
<ShipSummary>
<BasePackageID>1</BasePackageID>
<BillWeight>5</BillWeight>
<PackageNumber>sample string 6</PackageNumber>
<ShipPackageID>3</ShipPackageID>
<ShipmentID>2</ShipmentID>
<TrackingNumber>sample string 4</TrackingNumber>
</ShipSummary>
<ShipSummary>
<BasePackageID>1</BasePackageID>
<BillWeight>5</BillWeight>
<PackageNumber>sample string 6</PackageNumber>
<ShipPackageID>3</ShipPackageID>
<ShipmentID>2</ShipmentID>
<TrackingNumber>sample string 4</TrackingNumber>
</ShipSummary>
</ArrayOfShipSummary>