FedEx-REST - Rates Saturday Delivery

Carrier
FedEx-REST
Action
Rates Saturday Delivery
{
  "carrier": "FedEx-REST",
  "action": "getallrates",
  "params": {
    "test": true,
    "account_number": "1234567890",
    "key": "your-key-from-authenticate-request",
    "saturday_delivery": true,
    "packages": [
      {
        "weight": 5
      }
    ],
    "customs": [],
    "shipper": "My Company",
    "ship_addr1": "123 Main St",
    "ship_city": "Whitehall",
    "ship_state": "MT",
    "ship_code": "59759",
    "ship_country": "US",
    "to_country": "US",
    "to_state": "CA",
    "to_code": "90210",
    "weight_unit": "LB",
    "packaging_type": "YOUR_PACKAGING",
    "dropoff_type": "USE_SCHEDULED_PICKUP",
    "negotiated_rates": true
  }
}

<?php
$rs = new RocketShipIt;
$response = $rs->request(
array (
  'carrier' => 'FedEx-REST',
  'action' => 'getallrates',
  'params' => 
  array (
    'test' => true,
    'account_number' => '1234567890',
    'key' => 'your-key-from-authenticate-request',
    'saturday_delivery' => true,
    'packages' => 
    array (
      0 => 
      array (
        'weight' => 5,
      ),
    ),
    'customs' => 
    array (
    ),
    'shipper' => 'My Company',
    'ship_addr1' => '123 Main St',
    'ship_city' => 'Whitehall',
    'ship_state' => 'MT',
    'ship_code' => '59759',
    'ship_country' => 'US',
    'to_country' => 'US',
    'to_state' => 'CA',
    'to_code' => '90210',
    'weight_unit' => 'LB',
    'packaging_type' => 'YOUR_PACKAGING',
    'dropoff_type' => 'USE_SCHEDULED_PICKUP',
    'negotiated_rates' => true,
  ),
)
);

rs.request(
  {'action': 'getallrates',
 'carrier': 'FedEx-REST',
 'params': {'account_number': '1234567890',
            'customs': [],
            'dropoff_type': 'USE_SCHEDULED_PICKUP',
            'key': 'your-key-from-authenticate-request',
            'negotiated_rates': True,
            'packages': [{'weight': 5}],
            'packaging_type': 'YOUR_PACKAGING',
            'saturday_delivery': True,
            'ship_addr1': '123 Main St',
            'ship_city': 'Whitehall',
            'ship_code': '59759',
            'ship_country': 'US',
            'ship_state': 'MT',
            'shipper': 'My Company',
            'test': True,
            'to_code': '90210',
            'to_country': 'US',
            'to_state': 'CA',
            'weight_unit': 'LB'}}

)

rs.request(
  {"carrier"=>"FedEx-REST",
 "action"=>"getallrates",
 "params"=>
  {"test"=>true,
   "account_number"=>"1234567890",
   "key"=>"your-key-from-authenticate-request",
   "saturday_delivery"=>true,
   "packages"=>[{"weight"=>5}],
   "customs"=>[],
   "shipper"=>"My Company",
   "ship_addr1"=>"123 Main St",
   "ship_city"=>"Whitehall",
   "ship_state"=>"MT",
   "ship_code"=>"59759",
   "ship_country"=>"US",
   "to_country"=>"US",
   "to_state"=>"CA",
   "to_code"=>"90210",
   "weight_unit"=>"LB",
   "packaging_type"=>"YOUR_PACKAGING",
   "dropoff_type"=>"USE_SCHEDULED_PICKUP",
   "negotiated_rates"=>true}}

)

rocketshipit.request(
  {
  "carrier": "FedEx-REST",
  "action": "getallrates",
  "params": {
    "test": true,
    "account_number": "1234567890",
    "key": "your-key-from-authenticate-request",
    "saturday_delivery": true,
    "packages": [
      {
        "weight": 5
      }
    ],
    "customs": [],
    "shipper": "My Company",
    "ship_addr1": "123 Main St",
    "ship_city": "Whitehall",
    "ship_state": "MT",
    "ship_code": "59759",
    "ship_country": "US",
    "to_country": "US",
    "to_state": "CA",
    "to_code": "90210",
    "weight_unit": "LB",
    "packaging_type": "YOUR_PACKAGING",
    "dropoff_type": "USE_SCHEDULED_PICKUP",
    "negotiated_rates": true
  }
}
)

← All FedEx-REST examples