UPS - Label w/ Access Point

Carrier
UPS
Action
Label w/ Access Point
{
  "carrier": "UPS",
  "action": "submitshipment",
  "params": {
    "to_email": "[email protected]",
    "packages": [
      {
        "weight": 4,
        "length": 7
      }
    ],
    "service": "03",
    "shipper": "Acme Inc",
    "ship_addr1": "123 Main St",
    "ship_city": "Whitehall",
    "ship_state": "MT",
    "ship_code": "59759",
    "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",
    "alt_name": "G&R MARKET DELI",
    "alt_addr1": "2601 Sutter St",
    "alt_state": "CA",
    "alt_city": "San Francisco",
    "alt_code": "94115",
    "alt_country": "US",
    "image_type": "GIF",
    "test": true
  }
}

<?php
$rs = new RocketShipIt;
$response = $rs->request(
array (
  'carrier' => 'UPS',
  'action' => 'submitshipment',
  'params' => 
  array (
    'to_email' => '[email protected]',
    'packages' => 
    array (
      0 => 
      array (
        'weight' => 4,
        'length' => 7,
      ),
    ),
    'service' => '03',
    'shipper' => 'Acme Inc',
    'ship_addr1' => '123 Main St',
    'ship_city' => 'Whitehall',
    'ship_state' => 'MT',
    'ship_code' => '59759',
    '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',
    'alt_name' => 'G&R MARKET DELI',
    'alt_addr1' => '2601 Sutter St',
    'alt_state' => 'CA',
    'alt_city' => 'San Francisco',
    'alt_code' => '94115',
    'alt_country' => 'US',
    'image_type' => 'GIF',
    'test' => true,
  ),
)
);

rs.request(
  {'action': 'submitshipment',
 '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',
            'image_type': 'GIF',
            'packages': [{'length': 7, 'weight': 4}],
            'service': '03',
            'ship_addr1': '123 Main St',
            'ship_city': 'Whitehall',
            'ship_code': '59759',
            'ship_country': 'US',
            'ship_phone': '1231231234',
            'ship_state': 'MT',
            'shipper': 'Acme Inc',
            'test': True,
            'to_addr1': '940 Presidio Ave',
            'to_addr2': '#103',
            'to_city': 'San Francisco',
            'to_code': '94115',
            'to_country': 'US',
            'to_email': '[email protected]',
            'to_name': 'John Doe',
            'to_state': 'CA'}}

)

rs.request(
  {"carrier"=>"UPS",
 "action"=>"submitshipment",
 "params"=>
  {"to_email"=>"[email protected]",
   "packages"=>[{"weight"=>4, "length"=>7}],
   "service"=>"03",
   "shipper"=>"Acme Inc",
   "ship_addr1"=>"123 Main St",
   "ship_city"=>"Whitehall",
   "ship_state"=>"MT",
   "ship_code"=>"59759",
   "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",
   "alt_name"=>"G&R MARKET DELI",
   "alt_addr1"=>"2601 Sutter St",
   "alt_state"=>"CA",
   "alt_city"=>"San Francisco",
   "alt_code"=>"94115",
   "alt_country"=>"US",
   "image_type"=>"GIF",
   "test"=>true}}

)

rocketshipit.request(
  {
  "carrier": "UPS",
  "action": "submitshipment",
  "params": {
    "to_email": "[email protected]",
    "packages": [
      {
        "weight": 4,
        "length": 7
      }
    ],
    "service": "03",
    "shipper": "Acme Inc",
    "ship_addr1": "123 Main St",
    "ship_city": "Whitehall",
    "ship_state": "MT",
    "ship_code": "59759",
    "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",
    "alt_name": "G&R MARKET DELI",
    "alt_addr1": "2601 Sutter St",
    "alt_state": "CA",
    "alt_city": "San Francisco",
    "alt_code": "94115",
    "alt_country": "US",
    "image_type": "GIF",
    "test": true
  }
}
)

← All UPS examples