{
"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
}
}
)