{
"carrier": "FlavorCloud",
"action": "landedcost",
"params": {
"application_id": "your-app-id",
"key": "your-rest-api-key",
"reference_value": "ORDER-56789",
"currency": "USD",
"weight_unit": "LB",
"freight_charges": 29.18,
"shipper": "Acme Apparel",
"ship_contact": "Shipping Department",
"ship_addr1": "200 Townsend Street",
"ship_city": "San Francisco",
"ship_state": "CA",
"ship_code": "94107",
"ship_country": "US",
"ship_phone": "4155550100",
"ship_email": "[email protected]",
"to_name": "Jane Smith",
"to_addr1": "89 Pall Mall",
"to_city": "London",
"to_code": "SW1Y 5HS",
"to_country": "GB",
"to_phone": "442071234567",
"to_email": "[email protected]",
"customs": [
{
"customs_description": "Blue Polyester T-Shirt",
"customs_quantity": 1,
"customs_weight": 0.4,
"customs_line_amount": 29.00,
"customs_hs_tariff": "610910",
"customs_origin_country": "US"
}
]
}
}
<?php
$rs = new RocketShipIt;
$response = $rs->request(
array (
'carrier' => 'FlavorCloud',
'action' => 'landedcost',
'params' =>
array (
'application_id' => 'your-app-id',
'key' => 'your-rest-api-key',
'reference_value' => 'ORDER-56789',
'currency' => 'USD',
'weight_unit' => 'LB',
'freight_charges' => 29.18,
'shipper' => 'Acme Apparel',
'ship_contact' => 'Shipping Department',
'ship_addr1' => '200 Townsend Street',
'ship_city' => 'San Francisco',
'ship_state' => 'CA',
'ship_code' => '94107',
'ship_country' => 'US',
'ship_phone' => '4155550100',
'ship_email' => '[email protected]',
'to_name' => 'Jane Smith',
'to_addr1' => '89 Pall Mall',
'to_city' => 'London',
'to_code' => 'SW1Y 5HS',
'to_country' => 'GB',
'to_phone' => '442071234567',
'to_email' => '[email protected]',
'customs' =>
array (
0 =>
array (
'customs_description' => 'Blue Polyester T-Shirt',
'customs_quantity' => 1,
'customs_weight' => 0.4,
'customs_line_amount' => 29.0,
'customs_hs_tariff' => '610910',
'customs_origin_country' => 'US',
),
),
),
)
);
rs.request(
{'action': 'landedcost',
'carrier': 'FlavorCloud',
'params': {'application_id': 'your-app-id',
'currency': 'USD',
'customs': [{'customs_description': 'Blue Polyester T-Shirt',
'customs_hs_tariff': '610910',
'customs_line_amount': 29.0,
'customs_origin_country': 'US',
'customs_quantity': 1,
'customs_weight': 0.4}],
'freight_charges': 29.18,
'key': 'your-rest-api-key',
'reference_value': 'ORDER-56789',
'ship_addr1': '200 Townsend Street',
'ship_city': 'San Francisco',
'ship_code': '94107',
'ship_contact': 'Shipping Department',
'ship_country': 'US',
'ship_email': '[email protected]',
'ship_phone': '4155550100',
'ship_state': 'CA',
'shipper': 'Acme Apparel',
'to_addr1': '89 Pall Mall',
'to_city': 'London',
'to_code': 'SW1Y 5HS',
'to_country': 'GB',
'to_email': '[email protected]',
'to_name': 'Jane Smith',
'to_phone': '442071234567',
'weight_unit': 'LB'}}
)
rs.request(
{"carrier"=>"FlavorCloud",
"action"=>"landedcost",
"params"=>
{"application_id"=>"your-app-id",
"key"=>"your-rest-api-key",
"reference_value"=>"ORDER-56789",
"currency"=>"USD",
"weight_unit"=>"LB",
"freight_charges"=>29.18,
"shipper"=>"Acme Apparel",
"ship_contact"=>"Shipping Department",
"ship_addr1"=>"200 Townsend Street",
"ship_city"=>"San Francisco",
"ship_state"=>"CA",
"ship_code"=>"94107",
"ship_country"=>"US",
"ship_phone"=>"4155550100",
"ship_email"=>"[email protected]",
"to_name"=>"Jane Smith",
"to_addr1"=>"89 Pall Mall",
"to_city"=>"London",
"to_code"=>"SW1Y 5HS",
"to_country"=>"GB",
"to_phone"=>"442071234567",
"to_email"=>"[email protected]",
"customs"=>
[{"customs_description"=>"Blue Polyester T-Shirt",
"customs_quantity"=>1,
"customs_weight"=>0.4,
"customs_line_amount"=>29.0,
"customs_hs_tariff"=>"610910",
"customs_origin_country"=>"US"}]}}
)
rocketshipit.request(
{
"carrier": "FlavorCloud",
"action": "landedcost",
"params": {
"application_id": "your-app-id",
"key": "your-rest-api-key",
"reference_value": "ORDER-56789",
"currency": "USD",
"weight_unit": "LB",
"freight_charges": 29.18,
"shipper": "Acme Apparel",
"ship_contact": "Shipping Department",
"ship_addr1": "200 Townsend Street",
"ship_city": "San Francisco",
"ship_state": "CA",
"ship_code": "94107",
"ship_country": "US",
"ship_phone": "4155550100",
"ship_email": "[email protected]",
"to_name": "Jane Smith",
"to_addr1": "89 Pall Mall",
"to_city": "London",
"to_code": "SW1Y 5HS",
"to_country": "GB",
"to_phone": "442071234567",
"to_email": "[email protected]",
"customs": [
{
"customs_description": "Blue Polyester T-Shirt",
"customs_quantity": 1,
"customs_weight": 0.4,
"customs_line_amount": 29.00,
"customs_hs_tariff": "610910",
"customs_origin_country": "US"
}
]
}
}
)