{
"carrier": "UPS-REST",
"action": "SubmitShipment",
"params": {
"test": true,
"key": "your-key-from-authenticate-request",
"account_number": "YOUR_ACCOUNT",
"customs_forms": "01",
"currency": "EUR",
"invoice_date": "20260702",
"reason_for_export": "SALE",
"invoice_line_total": 120,
"eu_de_minimis": true,
"packages": [
{
"weight": 1
}
],
"customs": [
{
"invoice_line_number": "1",
"invoice_line_part_number": "SKU-123",
"invoice_line_description": "Silicone product",
"invoice_line_value": "120",
"invoice_line_origin_country_code": "US",
"customs_quantity_units": "EA",
"regulatory_details": [
{
"regulation_code": "EU_DE_MINIMIS",
"merchant_product_id": "SKU-123",
"non_standard_manufacturer_product_id": "SH123456-L",
"standard_manufacturer_product_id": "01233456789012"
}
]
}
],
"sold_company": "Max Mustermann GmbH",
"sold_name": "Max Mustermann",
"sold_phone": "493055551234",
"sold_addr1": "Friedrichstrasse 100",
"sold_city": "Berlin",
"sold_code": "10117",
"sold_country": "DE",
"service": "07",
"to_name": "Max Mustermann",
"to_attention_name": "Max Mustermann",
"to_addr1": "Friedrichstrasse 100",
"to_city": "Berlin",
"to_code": "10117",
"to_country": "DE",
"to_phone": "493055551234",
"ship_contact": "Jane Smith",
"shipper": "Bad Dragon LLC",
"ship_addr1": "100 Main Street",
"ship_state": "AZ",
"ship_city": "Phoenix",
"ship_code": "85001",
"ship_country": "US",
"ship_phone": "6025551234",
"image_type": "PNG",
"shipment_description": "Consumer goods",
"packaging_type": "02",
"pickup_type": "02",
"weight_unit": "KGS",
"length_unit": "CM"
}
}
<?php
$rs = new RocketShipIt;
$response = $rs->request(
array (
'carrier' => 'UPS-REST',
'action' => 'SubmitShipment',
'params' =>
array (
'test' => true,
'key' => 'your-key-from-authenticate-request',
'account_number' => 'YOUR_ACCOUNT',
'customs_forms' => '01',
'currency' => 'EUR',
'invoice_date' => '20260702',
'reason_for_export' => 'SALE',
'invoice_line_total' => 120,
'eu_de_minimis' => true,
'packages' =>
array (
0 =>
array (
'weight' => 1,
),
),
'customs' =>
array (
0 =>
array (
'invoice_line_number' => '1',
'invoice_line_part_number' => 'SKU-123',
'invoice_line_description' => 'Silicone product',
'invoice_line_value' => '120',
'invoice_line_origin_country_code' => 'US',
'customs_quantity_units' => 'EA',
'regulatory_details' =>
array (
0 =>
array (
'regulation_code' => 'EU_DE_MINIMIS',
'merchant_product_id' => 'SKU-123',
'non_standard_manufacturer_product_id' => 'SH123456-L',
'standard_manufacturer_product_id' => '01233456789012',
),
),
),
),
'sold_company' => 'Max Mustermann GmbH',
'sold_name' => 'Max Mustermann',
'sold_phone' => '493055551234',
'sold_addr1' => 'Friedrichstrasse 100',
'sold_city' => 'Berlin',
'sold_code' => '10117',
'sold_country' => 'DE',
'service' => '07',
'to_name' => 'Max Mustermann',
'to_attention_name' => 'Max Mustermann',
'to_addr1' => 'Friedrichstrasse 100',
'to_city' => 'Berlin',
'to_code' => '10117',
'to_country' => 'DE',
'to_phone' => '493055551234',
'ship_contact' => 'Jane Smith',
'shipper' => 'Bad Dragon LLC',
'ship_addr1' => '100 Main Street',
'ship_state' => 'AZ',
'ship_city' => 'Phoenix',
'ship_code' => '85001',
'ship_country' => 'US',
'ship_phone' => '6025551234',
'image_type' => 'PNG',
'shipment_description' => 'Consumer goods',
'packaging_type' => '02',
'pickup_type' => '02',
'weight_unit' => 'KGS',
'length_unit' => 'CM',
),
)
);
rs.request(
{'action': 'SubmitShipment',
'carrier': 'UPS-REST',
'params': {'account_number': 'YOUR_ACCOUNT',
'currency': 'EUR',
'customs': [{'customs_quantity_units': 'EA',
'invoice_line_description': 'Silicone product',
'invoice_line_number': '1',
'invoice_line_origin_country_code': 'US',
'invoice_line_part_number': 'SKU-123',
'invoice_line_value': '120',
'regulatory_details': [{'merchant_product_id': 'SKU-123',
'non_standard_manufacturer_product_id': 'SH123456-L',
'regulation_code': 'EU_DE_MINIMIS',
'standard_manufacturer_product_id': '01233456789012'}]}],
'customs_forms': '01',
'eu_de_minimis': True,
'image_type': 'PNG',
'invoice_date': '20260702',
'invoice_line_total': 120,
'key': 'your-key-from-authenticate-request',
'length_unit': 'CM',
'packages': [{'weight': 1}],
'packaging_type': '02',
'pickup_type': '02',
'reason_for_export': 'SALE',
'service': '07',
'ship_addr1': '100 Main Street',
'ship_city': 'Phoenix',
'ship_code': '85001',
'ship_contact': 'Jane Smith',
'ship_country': 'US',
'ship_phone': '6025551234',
'ship_state': 'AZ',
'shipment_description': 'Consumer goods',
'shipper': 'Bad Dragon LLC',
'sold_addr1': 'Friedrichstrasse 100',
'sold_city': 'Berlin',
'sold_code': '10117',
'sold_company': 'Max Mustermann GmbH',
'sold_country': 'DE',
'sold_name': 'Max Mustermann',
'sold_phone': '493055551234',
'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': 'KGS'}}
)
rs.request(
{"carrier"=>"UPS-REST",
"action"=>"SubmitShipment",
"params"=>
{"test"=>true,
"key"=>"your-key-from-authenticate-request",
"account_number"=>"YOUR_ACCOUNT",
"customs_forms"=>"01",
"currency"=>"EUR",
"invoice_date"=>"20260702",
"reason_for_export"=>"SALE",
"invoice_line_total"=>120,
"eu_de_minimis"=>true,
"packages"=>[{"weight"=>1}],
"customs"=>
[{"invoice_line_number"=>"1",
"invoice_line_part_number"=>"SKU-123",
"invoice_line_description"=>"Silicone product",
"invoice_line_value"=>"120",
"invoice_line_origin_country_code"=>"US",
"customs_quantity_units"=>"EA",
"regulatory_details"=>
[{"regulation_code"=>"EU_DE_MINIMIS",
"merchant_product_id"=>"SKU-123",
"non_standard_manufacturer_product_id"=>"SH123456-L",
"standard_manufacturer_product_id"=>"01233456789012"}]}],
"sold_company"=>"Max Mustermann GmbH",
"sold_name"=>"Max Mustermann",
"sold_phone"=>"493055551234",
"sold_addr1"=>"Friedrichstrasse 100",
"sold_city"=>"Berlin",
"sold_code"=>"10117",
"sold_country"=>"DE",
"service"=>"07",
"to_name"=>"Max Mustermann",
"to_attention_name"=>"Max Mustermann",
"to_addr1"=>"Friedrichstrasse 100",
"to_city"=>"Berlin",
"to_code"=>"10117",
"to_country"=>"DE",
"to_phone"=>"493055551234",
"ship_contact"=>"Jane Smith",
"shipper"=>"Bad Dragon LLC",
"ship_addr1"=>"100 Main Street",
"ship_state"=>"AZ",
"ship_city"=>"Phoenix",
"ship_code"=>"85001",
"ship_country"=>"US",
"ship_phone"=>"6025551234",
"image_type"=>"PNG",
"shipment_description"=>"Consumer goods",
"packaging_type"=>"02",
"pickup_type"=>"02",
"weight_unit"=>"KGS",
"length_unit"=>"CM"}}
)
rocketshipit.request(
{
"carrier": "UPS-REST",
"action": "SubmitShipment",
"params": {
"test": true,
"key": "your-key-from-authenticate-request",
"account_number": "YOUR_ACCOUNT",
"customs_forms": "01",
"currency": "EUR",
"invoice_date": "20260702",
"reason_for_export": "SALE",
"invoice_line_total": 120,
"eu_de_minimis": true,
"packages": [
{
"weight": 1
}
],
"customs": [
{
"invoice_line_number": "1",
"invoice_line_part_number": "SKU-123",
"invoice_line_description": "Silicone product",
"invoice_line_value": "120",
"invoice_line_origin_country_code": "US",
"customs_quantity_units": "EA",
"regulatory_details": [
{
"regulation_code": "EU_DE_MINIMIS",
"merchant_product_id": "SKU-123",
"non_standard_manufacturer_product_id": "SH123456-L",
"standard_manufacturer_product_id": "01233456789012"
}
]
}
],
"sold_company": "Max Mustermann GmbH",
"sold_name": "Max Mustermann",
"sold_phone": "493055551234",
"sold_addr1": "Friedrichstrasse 100",
"sold_city": "Berlin",
"sold_code": "10117",
"sold_country": "DE",
"service": "07",
"to_name": "Max Mustermann",
"to_attention_name": "Max Mustermann",
"to_addr1": "Friedrichstrasse 100",
"to_city": "Berlin",
"to_code": "10117",
"to_country": "DE",
"to_phone": "493055551234",
"ship_contact": "Jane Smith",
"shipper": "Bad Dragon LLC",
"ship_addr1": "100 Main Street",
"ship_state": "AZ",
"ship_city": "Phoenix",
"ship_code": "85001",
"ship_country": "US",
"ship_phone": "6025551234",
"image_type": "PNG",
"shipment_description": "Consumer goods",
"packaging_type": "02",
"pickup_type": "02",
"weight_unit": "KGS",
"length_unit": "CM"
}
}
)