FlavorCloud - Label

Carrier
FlavorCloud
Action
Label
{
  "carrier": "FlavorCloud",
  "action": "submitshipment",
  "params": {
    "application_id": "your-app-id",
    "key": "your-rest-api-key",
    "reference_value": "ORDER-56789",
    "service": "EXPRESS",
    "incoterms": "DDP",
    "rate_id": "HASHKEY_FROM_GETALLRATES",
    "duty_rate_id": "DUTY_HASHKEY_FROM_GETALLRATES",
    "image_type": "rs_zpl",
    "customs_content_type": "merchandise",
    "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': 'submitshipment',
 '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'}],
            'customs_content_type': 'merchandise',
            'duty_rate_id': 'DUTY_HASHKEY_FROM_GETALLRATES',
            'image_type': 'rs_zpl',
            'incoterms': 'DDP',
            'key': 'your-rest-api-key',
            'length_unit': 'IN',
            'packages': [{'height': 3,
                          'length': 12,
                          'weight': 1.25,
                          'width': 8}],
            'rate_id': 'HASHKEY_FROM_GETALLRATES',
            'reference_value': 'ORDER-56789',
            'service': 'EXPRESS',
            '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:30: syntax error, unexpected local variable or method, expecting end-of-input
    "to_addr2": "St. James's",
                           ^

)

rocketshipit.request(
  {
  "carrier": "FlavorCloud",
  "action": "submitshipment",
  "params": {
    "application_id": "your-app-id",
    "key": "your-rest-api-key",
    "reference_value": "ORDER-56789",
    "service": "EXPRESS",
    "incoterms": "DDP",
    "rate_id": "HASHKEY_FROM_GETALLRATES",
    "duty_rate_id": "DUTY_HASHKEY_FROM_GETALLRATES",
    "image_type": "rs_zpl",
    "customs_content_type": "merchandise",
    "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"
      }
    ]
  }
}
)

← All FlavorCloud examples