FedEx-REST - Label International EU De Minimis (under €150 B2C)

Carrier: FedEx-REST
Action: Label International EU De Minimis (under €150 B2C)
Description: Example implementation for FedEx-REST Label International EU De Minimis (under €150 B2C)
{
  "carrier": "FedEx-REST",
  "action": "SubmitShipment",
  "params": {
    "test": true,
    "generate_docs": [
      "COMMERCIAL_INVOICE"
    ],
    "currency": "EUR",
    "packages": [
      {
        "weight": 1,
        "length": 10,
        "width": 8,
        "height": 4
      }
    ],
    "customs": [
      {
        "customs_quantity_units": "EA",
        "customs_quantity": 1,
        "customs_line_amount": 120.00,
        "country_of_manufacture": "US",
        "customs_weight": 1,
        "customs_description": "Silicone product",
        "customs_hs_tariff": "3926.90",
        "regulatory_details": [
          {
            "regulation_code": "EU_DE_MINIMIS",
            "product_id": "SKU-123",
            "product_id_type": "SKU",
            "merchant_product_id": "SKU-123",
            "non_standard_manufacturer_product_id": "SH123456-L",
            "standard_manufacturer_product_id": "01233456789012"
          }
        ]
      }
    ],
    "customs_value": 120.00,
    "service": "INTERNATIONAL_PRIORITY",
    "shipper": "Bad Dragon LLC",
    "ship_contact": "Jane Smith",
    "ship_addr1": "100 Main Street",
    "ship_city": "Phoenix",
    "ship_state": "AZ",
    "ship_code": "85001",
    "ship_country": "US",
    "ship_phone": "6025551234",
    "ship_tax_id": "IM1234567890",
    "ship_tax_id_type": "BUSINESS_UNION",
    "to_attention_name": "Max Mustermann",
    "to_name": "Max Mustermann",
    "to_addr1": "Friedrichstrasse 100",
    "to_city": "Berlin",
    "to_code": "10117",
    "to_country": "DE",
    "to_phone": "493055551234",
    "shipment_description": "Silicone product",
    "packaging_type": "YOUR_PACKAGING",
    "pickup_type": "02",
    "weight_unit": "KG",
    "length_unit": "CM"
  }
}

<?php
$rs = new RocketShipIt;
$response = $rs->request(
array (
  'carrier' => 'FedEx-REST',
  'action' => 'SubmitShipment',
  'params' => 
  array (
    'test' => true,
    'generate_docs' => 
    array (
      0 => 'COMMERCIAL_INVOICE',
    ),
    'currency' => 'EUR',
    'packages' => 
    array (
      0 => 
      array (
        'weight' => 1,
        'length' => 10,
        'width' => 8,
        'height' => 4,
      ),
    ),
    'customs' => 
    array (
      0 => 
      array (
        'customs_quantity_units' => 'EA',
        'customs_quantity' => 1,
        'customs_line_amount' => 120.0,
        'country_of_manufacture' => 'US',
        'customs_weight' => 1,
        'customs_description' => 'Silicone product',
        'customs_hs_tariff' => '3926.90',
        'regulatory_details' => 
        array (
          0 => 
          array (
            'regulation_code' => 'EU_DE_MINIMIS',
            'product_id' => 'SKU-123',
            'product_id_type' => 'SKU',
            'merchant_product_id' => 'SKU-123',
            'non_standard_manufacturer_product_id' => 'SH123456-L',
            'standard_manufacturer_product_id' => '01233456789012',
          ),
        ),
      ),
    ),
    'customs_value' => 120.0,
    'service' => 'INTERNATIONAL_PRIORITY',
    'shipper' => 'Bad Dragon LLC',
    'ship_contact' => 'Jane Smith',
    'ship_addr1' => '100 Main Street',
    'ship_city' => 'Phoenix',
    'ship_state' => 'AZ',
    'ship_code' => '85001',
    'ship_country' => 'US',
    'ship_phone' => '6025551234',
    'ship_tax_id' => 'IM1234567890',
    'ship_tax_id_type' => 'BUSINESS_UNION',
    'to_attention_name' => 'Max Mustermann',
    'to_name' => 'Max Mustermann',
    'to_addr1' => 'Friedrichstrasse 100',
    'to_city' => 'Berlin',
    'to_code' => '10117',
    'to_country' => 'DE',
    'to_phone' => '493055551234',
    'shipment_description' => 'Silicone product',
    'packaging_type' => 'YOUR_PACKAGING',
    'pickup_type' => '02',
    'weight_unit' => 'KG',
    'length_unit' => 'CM',
  ),
)
);

rs.request(
  {'action': 'SubmitShipment',
 'carrier': 'FedEx-REST',
 'params': {'currency': 'EUR',
            'customs': [{'country_of_manufacture': 'US',
                         'customs_description': 'Silicone product',
                         'customs_hs_tariff': '3926.90',
                         'customs_line_amount': 120.0,
                         'customs_quantity': 1,
                         'customs_quantity_units': 'EA',
                         'customs_weight': 1,
                         'regulatory_details': [{'merchant_product_id': 'SKU-123',
                                                 'non_standard_manufacturer_product_id': 'SH123456-L',
                                                 'product_id': 'SKU-123',
                                                 'product_id_type': 'SKU',
                                                 'regulation_code': 'EU_DE_MINIMIS',
                                                 'standard_manufacturer_product_id': '01233456789012'}]}],
            'customs_value': 120.0,
            'generate_docs': ['COMMERCIAL_INVOICE'],
            'length_unit': 'CM',
            'packages': [{'height': 4, 'length': 10, 'weight': 1, 'width': 8}],
            'packaging_type': 'YOUR_PACKAGING',
            'pickup_type': '02',
            'service': 'INTERNATIONAL_PRIORITY',
            'ship_addr1': '100 Main Street',
            'ship_city': 'Phoenix',
            'ship_code': '85001',
            'ship_contact': 'Jane Smith',
            'ship_country': 'US',
            'ship_phone': '6025551234',
            'ship_state': 'AZ',
            'ship_tax_id': 'IM1234567890',
            'ship_tax_id_type': 'BUSINESS_UNION',
            'shipment_description': 'Silicone product',
            'shipper': 'Bad Dragon LLC',
            'test': True,
            'to_addr1': 'Friedrichstrasse 100',
            'to_attention_name': 'Max Mustermann',
            'to_city': 'Berlin',
            'to_code': '10117',
            'to_country': 'DE',
            'to_name': 'Max Mustermann',
            'to_phone': '493055551234',
            'weight_unit': 'KG'}}

)

rs.request(
  {"carrier"=>"FedEx-REST",
 "action"=>"SubmitShipment",
 "params"=>
  {"test"=>true,
   "generate_docs"=>["COMMERCIAL_INVOICE"],
   "currency"=>"EUR",
   "packages"=>[{"weight"=>1, "length"=>10, "width"=>8, "height"=>4}],
   "customs"=>
    [{"customs_quantity_units"=>"EA",
      "customs_quantity"=>1,
      "customs_line_amount"=>120.0,
      "country_of_manufacture"=>"US",
      "customs_weight"=>1,
      "customs_description"=>"Silicone product",
      "customs_hs_tariff"=>"3926.90",
      "regulatory_details"=>
       [{"regulation_code"=>"EU_DE_MINIMIS",
         "product_id"=>"SKU-123",
         "product_id_type"=>"SKU",
         "merchant_product_id"=>"SKU-123",
         "non_standard_manufacturer_product_id"=>"SH123456-L",
         "standard_manufacturer_product_id"=>"01233456789012"}]}],
   "customs_value"=>120.0,
   "service"=>"INTERNATIONAL_PRIORITY",
   "shipper"=>"Bad Dragon LLC",
   "ship_contact"=>"Jane Smith",
   "ship_addr1"=>"100 Main Street",
   "ship_city"=>"Phoenix",
   "ship_state"=>"AZ",
   "ship_code"=>"85001",
   "ship_country"=>"US",
   "ship_phone"=>"6025551234",
   "ship_tax_id"=>"IM1234567890",
   "ship_tax_id_type"=>"BUSINESS_UNION",
   "to_attention_name"=>"Max Mustermann",
   "to_name"=>"Max Mustermann",
   "to_addr1"=>"Friedrichstrasse 100",
   "to_city"=>"Berlin",
   "to_code"=>"10117",
   "to_country"=>"DE",
   "to_phone"=>"493055551234",
   "shipment_description"=>"Silicone product",
   "packaging_type"=>"YOUR_PACKAGING",
   "pickup_type"=>"02",
   "weight_unit"=>"KG",
   "length_unit"=>"CM"}}

)

rocketshipit.request(
  {
  "carrier": "FedEx-REST",
  "action": "SubmitShipment",
  "params": {
    "test": true,
    "generate_docs": [
      "COMMERCIAL_INVOICE"
    ],
    "currency": "EUR",
    "packages": [
      {
        "weight": 1,
        "length": 10,
        "width": 8,
        "height": 4
      }
    ],
    "customs": [
      {
        "customs_quantity_units": "EA",
        "customs_quantity": 1,
        "customs_line_amount": 120.00,
        "country_of_manufacture": "US",
        "customs_weight": 1,
        "customs_description": "Silicone product",
        "customs_hs_tariff": "3926.90",
        "regulatory_details": [
          {
            "regulation_code": "EU_DE_MINIMIS",
            "product_id": "SKU-123",
            "product_id_type": "SKU",
            "merchant_product_id": "SKU-123",
            "non_standard_manufacturer_product_id": "SH123456-L",
            "standard_manufacturer_product_id": "01233456789012"
          }
        ]
      }
    ],
    "customs_value": 120.00,
    "service": "INTERNATIONAL_PRIORITY",
    "shipper": "Bad Dragon LLC",
    "ship_contact": "Jane Smith",
    "ship_addr1": "100 Main Street",
    "ship_city": "Phoenix",
    "ship_state": "AZ",
    "ship_code": "85001",
    "ship_country": "US",
    "ship_phone": "6025551234",
    "ship_tax_id": "IM1234567890",
    "ship_tax_id_type": "BUSINESS_UNION",
    "to_attention_name": "Max Mustermann",
    "to_name": "Max Mustermann",
    "to_addr1": "Friedrichstrasse 100",
    "to_city": "Berlin",
    "to_code": "10117",
    "to_country": "DE",
    "to_phone": "493055551234",
    "shipment_description": "Silicone product",
    "packaging_type": "YOUR_PACKAGING",
    "pickup_type": "02",
    "weight_unit": "KG",
    "length_unit": "CM"
  }
}

)
← Back to FedEx-REST Examples

Other FedEx-REST Examples

Address Validation
Example implementation for FedEx-REST Address Validation
Authenticate
Example implementation for FedEx-REST Authenticate
Freight Label
Example implementation for FedEx-REST Freight Label
Freight Label Multi-pallet
Example implementation for FedEx-REST Freight Label Multi-pallet
Freight Label Third Party Billing
Example implementation for FedEx-REST Freight Label Third Party Billing
Freight Pickup
Example implementation for FedEx-REST Freight Pickup
Freight Pickup Cancel
Example implementation for FedEx-REST Freight Pickup Cancel
Freight Rating
Example implementation for FedEx-REST Freight Rating
Label
Example implementation for FedEx-REST Label
Label Additional Handling PAIL
Example implementation for FedEx-REST Label Additional Handling PAIL
Label Alcohol
Example implementation for FedEx-REST Label Alcohol
Label Alcohol to Licensee
Example implementation for FedEx-REST Label Alcohol to Licensee
Label Alternate Return Address
Example implementation for FedEx-REST Label Alternate Return Address
Label Bill Duty to Recipient
Example implementation for FedEx-REST Label Bill Duty to Recipient
Label Bill Recipient
Example implementation for FedEx-REST Label Bill Recipient
Label Direct Signature
Example implementation for FedEx-REST Label Direct Signature
Label Dry Ice
Example implementation for FedEx-REST Label Dry Ice
Label Email Notifications
Example implementation for FedEx-REST Label Email Notifications
Label Ground Collect (Not COD)
Example implementation for FedEx-REST Label Ground Collect (Not COD)
Label Hidden Account Number
Example implementation for FedEx-REST Label Hidden Account Number
Label Hold at Location
Example implementation for FedEx-REST Label Hold at Location
Label Home Delivery No Signature
Example implementation for FedEx-REST Label Home Delivery No Signature
Label International
Example implementation for FedEx-REST Label International
Label International Documents Only
Example implementation for FedEx-REST Label International Documents Only
Label International NO EEI Exemption
Example implementation for FedEx-REST Label International NO EEI Exemption
Label International Paperless Customs (ETD)
Example implementation for FedEx-REST Label International Paperless Customs (ETD)
Label International Sender Pays Duties
Example implementation for FedEx-REST Label International Sender Pays Duties
Label International w/ CI and USMCA
Example implementation for FedEx-REST Label International w/ CI and USMCA
Label International w/ CI and USMCA Custom Images
Example implementation for FedEx-REST Label International w/ CI and USMCA Custom Images
Label International with Broker
Example implementation for FedEx-REST Label International with Broker
Label Lithium Battery
Example implementation for FedEx-REST Label Lithium Battery
Label Multi-package
Example implementation for FedEx-REST Label Multi-package
Label Multi-package International
Example implementation for FedEx-REST Label Multi-package International
Label OneRate
Example implementation for FedEx-REST Label OneRate
Label Reference Values
Example implementation for FedEx-REST Label Reference Values
Label Residential
Example implementation for FedEx-REST Label Residential
Label Return Email label
Example implementation for FedEx-REST Label Return Email label
Label Return label
Example implementation for FedEx-REST Label Return label
Label Saturday Delivery
Example implementation for FedEx-REST Label Saturday Delivery
Label SmartPost
Example implementation for FedEx-REST Label SmartPost
Label Third Party Billing
Example implementation for FedEx-REST Label Third Party Billing
Label User Uploaded Customs Documents
Example implementation for FedEx-REST Label User Uploaded Customs Documents
Label with Insurance
Example implementation for FedEx-REST Label with Insurance
Locator
Example implementation for FedEx-REST Locator
Pickup Cancel
Example implementation for FedEx-REST Pickup Cancel
Pickup Express
Example implementation for FedEx-REST Pickup Express
Pickup Ground
Example implementation for FedEx-REST Pickup Ground
Rates
Example implementation for FedEx-REST Rates
Rates Direct Signature
Example implementation for FedEx-REST Rates Direct Signature
Rates International
Example implementation for FedEx-REST Rates International
Rates OneRate
Example implementation for FedEx-REST Rates OneRate
Rates Saturday Delivery
Example implementation for FedEx-REST Rates Saturday Delivery
Time in Transit
Example implementation for FedEx-REST Time in Transit
Track
Example implementation for FedEx-REST Track
Track Alert
Example implementation for FedEx-REST Track Alert
Tracking by Reference without account
Example implementation for FedEx-REST Tracking by Reference without account
Upload Customs Document
Example implementation for FedEx-REST Upload Customs Document
Upload Images
Example implementation for FedEx-REST Upload Images
Void
Example implementation for FedEx-REST Void
Void all packages
Example implementation for FedEx-REST Void all packages