UPS-REST - Pickup Status Oncall

Carrier
UPS-REST
Action
Pickup Status Oncall
{
  "carrier": "UPS-REST",
  "action": "pickupstatus",
  "params": {
    "pickup_type": "oncall",
    "test": true,
    "key": "your-key-from-authenticate-request"
  }
}

<?php
$rs = new RocketShipIt;
$response = $rs->request(
array (
  'carrier' => 'UPS-REST',
  'action' => 'pickupstatus',
  'params' => 
  array (
    'pickup_type' => 'oncall',
    'test' => true,
    'key' => 'your-key-from-authenticate-request',
  ),
)
);

rs.request(
  {'action': 'pickupstatus',
 'carrier': 'UPS-REST',
 'params': {'key': 'your-key-from-authenticate-request',
            'pickup_type': 'oncall',
            'test': True}}

)

rs.request(
  {"carrier"=>"UPS-REST",
 "action"=>"pickupstatus",
 "params"=>
  {"pickup_type"=>"oncall",
   "test"=>true,
   "key"=>"your-key-from-authenticate-request"}}

)

rocketshipit.request(
  {
  "carrier": "UPS-REST",
  "action": "pickupstatus",
  "params": {
    "pickup_type": "oncall",
    "test": true,
    "key": "your-key-from-authenticate-request"
  }
}
)

← All UPS-REST examples