{
"carrier": "FlavorCloud",
"action": "getallrates",
"params": {
"application_id": "your-app-id",
"key": "your-rest-api-key",
"reference_value": "ORDER-56789",
"currency": "USD",
"weight_unit": "LB",
"length_unit": "IN",
"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_addr2": "St. James's",
"to_city": "London",
"to_code": "SW1Y 5HS",
"to_country": "GB",
"to_phone": "442071234567",
"to_email": "[email protected]",
"packages": [
{ "weight": 1.25, "length": 12, "width": 8, "height": 3 }
],
"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",
"invoice_line_part_number": "TS-BLUE-M"
}
]
}
}
<?php
$rs = new RocketShipIt;
$response = $rs->request(
);
rs.request(
{'action': 'getallrates',
'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,
'invoice_line_part_number': 'TS-BLUE-M'}],
'key': 'your-rest-api-key',
'length_unit': 'IN',
'packages': [{'height': 3,
'length': 12,
'weight': 1.25,
'width': 8}],
'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_addr2': "St. James's",
'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(
-e:24: syntax error, unexpected local variable or method, expecting end-of-input
"to_addr2": "St. James's",
^
)
rocketshipit.request(
{
"carrier": "FlavorCloud",
"action": "getallrates",
"params": {
"application_id": "your-app-id",
"key": "your-rest-api-key",
"reference_value": "ORDER-56789",
"currency": "USD",
"weight_unit": "LB",
"length_unit": "IN",
"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_addr2": "St. James's",
"to_city": "London",
"to_code": "SW1Y 5HS",
"to_country": "GB",
"to_phone": "442071234567",
"to_email": "[email protected]",
"packages": [
{ "weight": 1.25, "length": 12, "width": 8, "height": 3 }
],
"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",
"invoice_line_part_number": "TS-BLUE-M"
}
]
}
}
)