FedEx-REST - Time in Transit

Carrier
FedEx-REST
Action
Time in Transit
{
  "carrier": "FedEx-REST",
  "action": "timeintransit",
  "params": {
    "key": "your-key-from-authenticate-request",
    "ship_code": "94608",
    "ship_country": "US",
    "to_code": "90210",
    "to_country": "US",
    "test": true
  }
}

<?php
$rs = new RocketShipIt;
$response = $rs->request(
array (
  'carrier' => 'FedEx-REST',
  'action' => 'timeintransit',
  'params' => 
  array (
    'key' => 'your-key-from-authenticate-request',
    'ship_code' => '94608',
    'ship_country' => 'US',
    'to_code' => '90210',
    'to_country' => 'US',
    'test' => true,
  ),
)
);

rs.request(
  {'action': 'timeintransit',
 'carrier': 'FedEx-REST',
 'params': {'key': 'your-key-from-authenticate-request',
            'ship_code': '94608',
            'ship_country': 'US',
            'test': True,
            'to_code': '90210',
            'to_country': 'US'}}

)

rs.request(
  {"carrier"=>"FedEx-REST",
 "action"=>"timeintransit",
 "params"=>
  {"key"=>"your-key-from-authenticate-request",
   "ship_code"=>"94608",
   "ship_country"=>"US",
   "to_code"=>"90210",
   "to_country"=>"US",
   "test"=>true}}

)

rocketshipit.request(
  {
  "carrier": "FedEx-REST",
  "action": "timeintransit",
  "params": {
    "key": "your-key-from-authenticate-request",
    "ship_code": "94608",
    "ship_country": "US",
    "to_code": "90210",
    "to_country": "US",
    "test": true
  }
}
)

← All FedEx-REST examples