FedEx-Freight - Pickup Cancel

Carrier
FedEx-Freight
Action
Pickup Cancel
{
  "carrier": "FedEx-Freight",
  "action": "cancelpickup",
  "params": {
    "client_id": "your-client-id",
    "client_secret": "your-client-secret",
    "account_number": "YOUR_FREIGHT_ACCOUNT_NUMBER",
    "pickup_id": "CPU663460",
    "pickup_date": "2026-12-31",
    "pickup_contact_name": "John Doe",
    "test": true
  }
}

<?php
$rs = new RocketShipIt;
$response = $rs->request(
array (
  'carrier' => 'FedEx-Freight',
  'action' => 'cancelpickup',
  'params' => 
  array (
    'client_id' => 'your-client-id',
    'client_secret' => 'your-client-secret',
    'account_number' => 'YOUR_FREIGHT_ACCOUNT_NUMBER',
    'pickup_id' => 'CPU663460',
    'pickup_date' => '2026-12-31',
    'pickup_contact_name' => 'John Doe',
    'test' => true,
  ),
)
);

rs.request(
  {'action': 'cancelpickup',
 'carrier': 'FedEx-Freight',
 'params': {'account_number': 'YOUR_FREIGHT_ACCOUNT_NUMBER',
            'client_id': 'your-client-id',
            'client_secret': 'your-client-secret',
            'pickup_contact_name': 'John Doe',
            'pickup_date': '2026-12-31',
            'pickup_id': 'CPU663460',
            'test': True}}

)

rs.request(
  {"carrier"=>"FedEx-Freight",
 "action"=>"cancelpickup",
 "params"=>
  {"client_id"=>"your-client-id",
   "client_secret"=>"your-client-secret",
   "account_number"=>"YOUR_FREIGHT_ACCOUNT_NUMBER",
   "pickup_id"=>"CPU663460",
   "pickup_date"=>"2026-12-31",
   "pickup_contact_name"=>"John Doe",
   "test"=>true}}

)

rocketshipit.request(
  {
  "carrier": "FedEx-Freight",
  "action": "cancelpickup",
  "params": {
    "client_id": "your-client-id",
    "client_secret": "your-client-secret",
    "account_number": "YOUR_FREIGHT_ACCOUNT_NUMBER",
    "pickup_id": "CPU663460",
    "pickup_date": "2026-12-31",
    "pickup_contact_name": "John Doe",
    "test": true
  }
}
)

← All FedEx-Freight examples