Packaging Type

Currently, only UPS supports the specified package type, Only packaging type code 02 is applicable to Ground Freight Pricing. Package type 24, or 25 is only allowed for shipment without return service. Packaging type must be valid for all the following: ShipTo country or territory, ShipFrom country or territory, a shipment going from ShipTo country or territory to ShipFrom country or territory, all Accessorials at both the shipment and package level, and the shipment service type. UPS will not accept raw wood pallets and please refer the UPS packaging guidelines for pallets on UPS.com.

Request Parameter

specialServiceTypes

field path:itemLines/specialService/specialServiceTypes

Property Description
PACKAGING specify packaging type

specialServiceAttributeList

field path:itemLines/specialService/specialServiceAttributeList

This is a list of dynamic parameters, the Key represents the parameter name, and the Value represents the parameter value

Key Description
PACKAGING For the specific package type, see below for valid values required
PACKAGING

PACKAGING applies to the following value mentioned in the table.

Property Description
00 UNKNOWN
01 UPS Letter
02 Customer Supplied Package
03 Tube
04 PAK
21 UPS Express Box
24 UPS 25KG Box
25 UPS 10KG Box
30 Pallet
2a Small Express Box
2b Medium Express Box
2c Large Express Box

Example

This example shows the request parameters of the package special service field specialService when purchasing a dangerous goods shipping label



"specialService": {
    "specialServiceTypes": ["PACKAGING"],
    "specialServiceAttributeList": [
        {
            "key": "PACKAGING",
            "value": "02"
        }
    ]
}

1
2
3
4
5
6
7
8
9
10
11
12