Dangerous Goods

Attention

1、At present, the only type of dangerous goods that can be purchased is Lithium battery. 2、The Lithium Battery Service applies to the following FedEx Express services mentioned in the table.

Property
FIRST_OVERNIGHT
PRIORITY_OVERNIGHT
STANDARD_OVERNIGHT
FEDEX_2_DAY
FEDEX_EXPRESS_SAVER
FEDEX_1_DAY_FREIGHT
FEDEX_2_DAY_FREIGHT
FEDEX_3_DAY_FREIGHT

Request Parameter

specialServiceTypes

field path:itemLines/specialService/specialServiceTypes

Property Description
DANGEROUS_GOODS On behalf of the purchased goods are dangerous goods

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
DANGEROUS_GOODS_SIGNATURE The name of the person who signed the dangerous goods , required
DANGEROUS_GOODS_OPTION Dangerous Goods Type , required
BATTERY_MATERIAL_TYPE Type of battery material , required
BATTERY_PACKING_TYPE Battery pack type , required
DANGEROUS_GOODS_OPTION

DANGEROUS_GOODS_OPTION applies to the following value mentioned in the table.

Property Description
BATTERY At present, the only type of dangerous goods that can be purchased is Lithium battery.
BATTERY_MATERIAL_TYPE

BATTERY_MATERIAL_TYPE applies to the following value mentioned in the table.

Property Description
LITHIUM_METAL Lithium Metal Batteries
LITHIUM_ION Lithium Ion Batteries
BATTERY_PACKING_TYPE

BATTERY_PACKING_TYPE applies to the following value mentioned in the table.

Property Description
CONTAINED_IN_EQUIPMENT Contained in Equipment
PACKED_WITH_EQUIPMENT Packed With Equipment

Example

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



"specialService": {
    "specialServiceAttributeList": [
        {
            "key": "DANGEROUS_GOODS_SIGNATURE",
            "value": "Jack"
        },
        {
            "key": "DANGEROUS_GOODS_OPTION",
            "value": "BATTERY"
        },
        {
            "key": "BATTERY_MATERIAL_TYPE",
            "value": "LITHIUM_METAL"
        },
        {
            "key": "BATTERY_PACKING_TYPE",
            "value": "CONTAINED_IN_EQUIPMENT"
        }
    ], 
    "specialServiceTypes":[
        "DANGEROUS_GOODS"
    ]
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26