Skip to content

Instantly share code, notes, and snippets.

@zot24
Created December 5, 2013 15:37
Show Gist options
  • Save zot24/7807652 to your computer and use it in GitHub Desktop.
Save zot24/7807652 to your computer and use it in GitHub Desktop.
UPS Service Codes & Package Type Codes in the UK
$packages = array(
"UPS Letter" => '01',
"Customer Supplied Package" => '02' ,
"Tube" => '03',
"PAK" => '04',
"UPS Express Box" => '21',
"UPS 25KG Box" => '24',
"UPS 10KG Box" => '25',
"Pallet" => '30',
"Small Express Box" => '2a',
"Medium Express Box" => '2b',
"Large Express Box" => '2c',
"Flats" => '56',
"Parcels" => '57',
"BPM" => '58',
"First Class" => '59',
"Priority" => '60',
"Machinables" => '61',
"Irregulars" => '62',
"Parcel Post" => '63',
"BPM Parcel" => '64',
"Media Mail" => '65',
"BMP Flat" => '66',
"Standard Flat" => '67'
);
$services = array(
"UPS Standard" => '11',
"UPS Ground" => '03',
"UPS 3 Day Select" => '12',
"UPS 2nd Day Air" => '02',
"UPS 2nd Day Air AM" => '59',
"UPS Next Day Air Saver" => '13',
"UPS Next Day Air" => '01',
"UPS Next Day Air Early A.M." => '14',
"UPS Worldwide Express" => '07',
"UPS Worldwide Express Plus" => '54',
"UPS Worldwide Expedited" => '08',
"UPS World Wide Saver" => '65'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment