{
"carrier": "UPS",
"action": "SubmitShipment",
"params": {
"account_number": "YOUR_ACCOUNT",
"key": "YOUR_KEY",
"username": "YOUR_USERNAME",
"password": "YOUR_PASSWORD",
"packages": [
{
"weight": 1,
"reference_code": "TN",
"reference_value": "12345678"
}
],
"service": "14",
"shipper": "John Doe",
"ship_contact": "John Doe",
"ship_addr1": "2000 Meadowvale Rd",
"ship_city": "Toronto",
"ship_state": "ON",
"ship_code": "M1B5K7",
"ship_country": "CA",
"ship_phone": "1231231234",
"to_attention_name": "Etty Klein",
"to_name": "Etty Klein",
"to_addr1": "6050 Blvd East",
"to_state": "NJ",
"to_city": "West New York",
"to_code": "07093",
"to_country": "US",
"to_phone": "1231231234",
"image_type": "PNG",
"shipment_description": "xxx",
"packaging_type": "01",
"pickup_type": "02",
"weight_unit": "LBS",
"length_unit": "IN",
"test": true
}
}
<?php
$rs = new RocketShipIt;
$response = $rs->request(
array (
'carrier' => 'UPS',
'action' => 'SubmitShipment',
'params' =>
array (
'account_number' => 'YOUR_ACCOUNT',
'key' => 'YOUR_KEY',
'username' => 'YOUR_USERNAME',
'password' => 'YOUR_PASSWORD',
'packages' =>
array (
0 =>
array (
'weight' => 1,
'reference_code' => 'TN',
'reference_value' => '12345678',
),
),
'service' => '14',
'shipper' => 'John Doe',
'ship_contact' => 'John Doe',
'ship_addr1' => '2000 Meadowvale Rd',
'ship_city' => 'Toronto',
'ship_state' => 'ON',
'ship_code' => 'M1B5K7',
'ship_country' => 'CA',
'ship_phone' => '1231231234',
'to_attention_name' => 'Etty Klein',
'to_name' => 'Etty Klein',
'to_addr1' => '6050 Blvd East',
'to_state' => 'NJ',
'to_city' => 'West New York',
'to_code' => '07093',
'to_country' => 'US',
'to_phone' => '1231231234',
'image_type' => 'PNG',
'shipment_description' => 'xxx',
'packaging_type' => '01',
'pickup_type' => '02',
'weight_unit' => 'LBS',
'length_unit' => 'IN',
'test' => true,
),
)
);
rs.request(
{'action': 'SubmitShipment',
'carrier': 'UPS',
'params': {'account_number': 'YOUR_ACCOUNT',
'image_type': 'PNG',
'key': 'YOUR_KEY',
'length_unit': 'IN',
'packages': [{'reference_code': 'TN',
'reference_value': '12345678',
'weight': 1}],
'packaging_type': '01',
'password': 'YOUR_PASSWORD',
'pickup_type': '02',
'service': '14',
'ship_addr1': '2000 Meadowvale Rd',
'ship_city': 'Toronto',
'ship_code': 'M1B5K7',
'ship_contact': 'John Doe',
'ship_country': 'CA',
'ship_phone': '1231231234',
'ship_state': 'ON',
'shipment_description': 'xxx',
'shipper': 'John Doe',
'test': True,
'to_addr1': '6050 Blvd East',
'to_attention_name': 'Etty Klein',
'to_city': 'West New York',
'to_code': '07093',
'to_country': 'US',
'to_name': 'Etty Klein',
'to_phone': '1231231234',
'to_state': 'NJ',
'username': 'YOUR_USERNAME',
'weight_unit': 'LBS'}}
)
rs.request(
{"carrier"=>"UPS",
"action"=>"SubmitShipment",
"params"=>
{"account_number"=>"YOUR_ACCOUNT",
"key"=>"YOUR_KEY",
"username"=>"YOUR_USERNAME",
"password"=>"YOUR_PASSWORD",
"packages"=>
[{"weight"=>1, "reference_code"=>"TN", "reference_value"=>"12345678"}],
"service"=>"14",
"shipper"=>"John Doe",
"ship_contact"=>"John Doe",
"ship_addr1"=>"2000 Meadowvale Rd",
"ship_city"=>"Toronto",
"ship_state"=>"ON",
"ship_code"=>"M1B5K7",
"ship_country"=>"CA",
"ship_phone"=>"1231231234",
"to_attention_name"=>"Etty Klein",
"to_name"=>"Etty Klein",
"to_addr1"=>"6050 Blvd East",
"to_state"=>"NJ",
"to_city"=>"West New York",
"to_code"=>"07093",
"to_country"=>"US",
"to_phone"=>"1231231234",
"image_type"=>"PNG",
"shipment_description"=>"xxx",
"packaging_type"=>"01",
"pickup_type"=>"02",
"weight_unit"=>"LBS",
"length_unit"=>"IN",
"test"=>true}}
)
rocketshipit.request(
{
"carrier": "UPS",
"action": "SubmitShipment",
"params": {
"account_number": "YOUR_ACCOUNT",
"key": "YOUR_KEY",
"username": "YOUR_USERNAME",
"password": "YOUR_PASSWORD",
"packages": [
{
"weight": 1,
"reference_code": "TN",
"reference_value": "12345678"
}
],
"service": "14",
"shipper": "John Doe",
"ship_contact": "John Doe",
"ship_addr1": "2000 Meadowvale Rd",
"ship_city": "Toronto",
"ship_state": "ON",
"ship_code": "M1B5K7",
"ship_country": "CA",
"ship_phone": "1231231234",
"to_attention_name": "Etty Klein",
"to_name": "Etty Klein",
"to_addr1": "6050 Blvd East",
"to_state": "NJ",
"to_city": "West New York",
"to_code": "07093",
"to_country": "US",
"to_phone": "1231231234",
"image_type": "PNG",
"shipment_description": "xxx",
"packaging_type": "01",
"pickup_type": "02",
"weight_unit": "LBS",
"length_unit": "IN",
"test": true
}
}
)