{
"carrier": "DHL-REST",
"action": "getallrates",
"params": {
"client_id": "demo-key",
"client_secret": "demo-secret",
"packages": [
{
"weight": 5,
"length": 10,
"width": 10,
"height": 10,
"battery": {
"type": "LITHIUM_ION",
"packing_type": "PACKED_WITH_EQUIPMENT"
}
}
],
"shipper": "RocketShipIt",
"ship_addr1": "1401 Park Ave",
"ship_city": "Emeryville",
"ship_state": "CA",
"ship_code": "94608",
"ship_phone": "1231231234",
"ship_country": "US",
"to_name": "John Doe",
"to_addr1": "940 Presidio Ave",
"to_addr2": "#103",
"to_state": "CA",
"to_city": "San Francisco",
"to_code": "94115",
"to_country": "US",
"test": true
}
}
<?php
$rs = new RocketShipIt;
$response = $rs->request(
array (
'carrier' => 'DHL-REST',
'action' => 'getallrates',
'params' =>
array (
'client_id' => 'demo-key',
'client_secret' => 'demo-secret',
'packages' =>
array (
0 =>
array (
'weight' => 5,
'length' => 10,
'width' => 10,
'height' => 10,
'battery' =>
array (
'type' => 'LITHIUM_ION',
'packing_type' => 'PACKED_WITH_EQUIPMENT',
),
),
),
'shipper' => 'RocketShipIt',
'ship_addr1' => '1401 Park Ave',
'ship_city' => 'Emeryville',
'ship_state' => 'CA',
'ship_code' => '94608',
'ship_phone' => '1231231234',
'ship_country' => 'US',
'to_name' => 'John Doe',
'to_addr1' => '940 Presidio Ave',
'to_addr2' => '#103',
'to_state' => 'CA',
'to_city' => 'San Francisco',
'to_code' => '94115',
'to_country' => 'US',
'test' => true,
),
)
);
rs.request(
{'action': 'getallrates',
'carrier': 'DHL-REST',
'params': {'client_id': 'demo-key',
'client_secret': 'demo-secret',
'packages': [{'battery': {'packing_type': 'PACKED_WITH_EQUIPMENT',
'type': 'LITHIUM_ION'},
'height': 10,
'length': 10,
'weight': 5,
'width': 10}],
'ship_addr1': '1401 Park Ave',
'ship_city': 'Emeryville',
'ship_code': '94608',
'ship_country': 'US',
'ship_phone': '1231231234',
'ship_state': 'CA',
'shipper': 'RocketShipIt',
'test': True,
'to_addr1': '940 Presidio Ave',
'to_addr2': '#103',
'to_city': 'San Francisco',
'to_code': '94115',
'to_country': 'US',
'to_name': 'John Doe',
'to_state': 'CA'}}
)
rs.request(
{"carrier"=>"DHL-REST",
"action"=>"getallrates",
"params"=>
{"client_id"=>"demo-key",
"client_secret"=>"demo-secret",
"packages"=>
[{"weight"=>5,
"length"=>10,
"width"=>10,
"height"=>10,
"battery"=>
{"type"=>"LITHIUM_ION", "packing_type"=>"PACKED_WITH_EQUIPMENT"}}],
"shipper"=>"RocketShipIt",
"ship_addr1"=>"1401 Park Ave",
"ship_city"=>"Emeryville",
"ship_state"=>"CA",
"ship_code"=>"94608",
"ship_phone"=>"1231231234",
"ship_country"=>"US",
"to_name"=>"John Doe",
"to_addr1"=>"940 Presidio Ave",
"to_addr2"=>"#103",
"to_state"=>"CA",
"to_city"=>"San Francisco",
"to_code"=>"94115",
"to_country"=>"US",
"test"=>true}}
)
rocketshipit.request(
{
"carrier": "DHL-REST",
"action": "getallrates",
"params": {
"client_id": "demo-key",
"client_secret": "demo-secret",
"packages": [
{
"weight": 5,
"length": 10,
"width": 10,
"height": 10,
"battery": {
"type": "LITHIUM_ION",
"packing_type": "PACKED_WITH_EQUIPMENT"
}
}
],
"shipper": "RocketShipIt",
"ship_addr1": "1401 Park Ave",
"ship_city": "Emeryville",
"ship_state": "CA",
"ship_code": "94608",
"ship_phone": "1231231234",
"ship_country": "US",
"to_name": "John Doe",
"to_addr1": "940 Presidio Ave",
"to_addr2": "#103",
"to_state": "CA",
"to_city": "San Francisco",
"to_code": "94115",
"to_country": "US",
"test": true
}
}
)