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