{
"carrier": "UPS",
"action": "GetAllRates",
"params": {
"alt_name": "G&R MARKET DELI",
"alt_addr1": "2601 Sutter St",
"alt_state": "CA",
"alt_city": "San Francisco",
"alt_code": "94115",
"alt_country": "US",
"packages": [
{
"weight": 5,
"length": 5,
"width": 5,
"height": 5
}
],
"customs": [],
"shipper": "RocketShipIt",
"ship_addr1": "123 Main St",
"ship_city": "Whitehall",
"ship_state": "MT",
"ship_code": "59759",
"ship_country": "US",
"to_country": "US",
"to_code": "90210",
"weight_unit": "LBS",
"pickup_type": "01",
"customer_classification": "01",
"length_unit": "IN",
"packaging_type": "02"
}
}
<?php
$rs = new RocketShipIt;
$response = $rs->request(
array (
'carrier' => 'UPS',
'action' => 'GetAllRates',
'params' =>
array (
'alt_name' => 'G&R MARKET DELI',
'alt_addr1' => '2601 Sutter St',
'alt_state' => 'CA',
'alt_city' => 'San Francisco',
'alt_code' => '94115',
'alt_country' => 'US',
'packages' =>
array (
0 =>
array (
'weight' => 5,
'length' => 5,
'width' => 5,
'height' => 5,
),
),
'customs' =>
array (
),
'shipper' => 'RocketShipIt',
'ship_addr1' => '123 Main St',
'ship_city' => 'Whitehall',
'ship_state' => 'MT',
'ship_code' => '59759',
'ship_country' => 'US',
'to_country' => 'US',
'to_code' => '90210',
'weight_unit' => 'LBS',
'pickup_type' => '01',
'customer_classification' => '01',
'length_unit' => 'IN',
'packaging_type' => '02',
),
)
);
rs.request(
{'action': 'GetAllRates',
'carrier': 'UPS',
'params': {'alt_addr1': '2601 Sutter St',
'alt_city': 'San Francisco',
'alt_code': '94115',
'alt_country': 'US',
'alt_name': 'G&R MARKET DELI',
'alt_state': 'CA',
'customer_classification': '01',
'customs': [],
'length_unit': 'IN',
'packages': [{'height': 5, 'length': 5, 'weight': 5, 'width': 5}],
'packaging_type': '02',
'pickup_type': '01',
'ship_addr1': '123 Main St',
'ship_city': 'Whitehall',
'ship_code': '59759',
'ship_country': 'US',
'ship_state': 'MT',
'shipper': 'RocketShipIt',
'to_code': '90210',
'to_country': 'US',
'weight_unit': 'LBS'}}
)
rs.request(
{"carrier"=>"UPS",
"action"=>"GetAllRates",
"params"=>
{"alt_name"=>"G&R MARKET DELI",
"alt_addr1"=>"2601 Sutter St",
"alt_state"=>"CA",
"alt_city"=>"San Francisco",
"alt_code"=>"94115",
"alt_country"=>"US",
"packages"=>[{"weight"=>5, "length"=>5, "width"=>5, "height"=>5}],
"customs"=>[],
"shipper"=>"RocketShipIt",
"ship_addr1"=>"123 Main St",
"ship_city"=>"Whitehall",
"ship_state"=>"MT",
"ship_code"=>"59759",
"ship_country"=>"US",
"to_country"=>"US",
"to_code"=>"90210",
"weight_unit"=>"LBS",
"pickup_type"=>"01",
"customer_classification"=>"01",
"length_unit"=>"IN",
"packaging_type"=>"02"}}
)
rocketshipit.request(
{
"carrier": "UPS",
"action": "GetAllRates",
"params": {
"alt_name": "G&R MARKET DELI",
"alt_addr1": "2601 Sutter St",
"alt_state": "CA",
"alt_city": "San Francisco",
"alt_code": "94115",
"alt_country": "US",
"packages": [
{
"weight": 5,
"length": 5,
"width": 5,
"height": 5
}
],
"customs": [],
"shipper": "RocketShipIt",
"ship_addr1": "123 Main St",
"ship_city": "Whitehall",
"ship_state": "MT",
"ship_code": "59759",
"ship_country": "US",
"to_country": "US",
"to_code": "90210",
"weight_unit": "LBS",
"pickup_type": "01",
"customer_classification": "01",
"length_unit": "IN",
"packaging_type": "02"
}
}
)