I have an urgent need to know the specific code for UPS Standard shipping within Shopify's API. It would be a 2-digit number found in the Order API, shipping-lines > shipping-line > code.
Thanks for any assistance.
I have an urgent need to know the specific code for UPS Standard shipping within Shopify's API. It would be a 2-digit number found in the Order API, shipping-lines > shipping-line > code.
Thanks for any assistance.
UPS Standart code value is '11'
Also some other UPS codes:
'01' => 'Next Day Air ("Red")',
'02' => 'Second Day Air ("Blue")',
'03' => 'Ground',
'07' => 'Express',
'08' => 'Expedited',
'11' => 'Standard',
'12' => 'Third Day Select',
'13' => 'Next Day Air Saver ("Red Saver")',
'14' => 'Next Day Air Early A.M.',
'15' => 'Next Day Air Early A.M.',
'22' => 'Ground - Returns Plus - Three Pickup Attempts',
'32' => 'Next Day Air Early A.M. - COD',
'33' => 'Next Day Air Early A.M. - Saturday Delivery, COD',
'41' => 'Next Day Air Early A.M. - Saturday Delivery',
'42' => 'Ground - Signature Required',
'44' => 'Next Day Air - Saturday Delivery',
'54' => 'Express Plus',
'59' => 'Second Day Air A.M.',
'65' => 'WorldWide Saver',
'66' => 'Worldwide Express',
'72' => 'Ground - Collect on Delivery',
'78' => 'Ground - Returns Plus - One Pickup Attempt',
'90' => 'Ground - Returns - UPS Prints and Mails Label',
'A0' => 'Next Day Air Early A.M. - Adult Signature Required',
'A1' => 'Next Day Air Early A.M. - Saturday Delivery, Adult Signature Required',
'A2' => 'Next Day Air - Adult Signature Required',
'A8' => 'Ground - Adult Signature Required',
'A9' => 'Next Day Air Early A.M. - Adult Signature Required, COD',
'AA' => 'Next Day Air Early A.M. - Saturday Delivery, Adult Signature Required, COD',
If you download the UPS shipping developer documentation, there are no longer any codes for 'Saturday' delivery in the Appendix or elsewhere. Instead you use the service you want, say 'Next Day Air' or 'Next Day Air Early AM' would be the common ones along with the SaturdayDeliveryIndicator
. From their documentation:
Saturday delivery indicator. The presence indicates Saturday delivery; the absence indicates not Saturday delivery.
There are several ways:
in magento admin go to system > configuration and click on shipping methods tab and rightclick inside of the Allowed Methods box, Inpect the element and you'll see something like UPS Standard value represents the method code.
or open app/code/core/Mage/Usa/Model/Shipping/Carrier/Ups.php and around the line 327 you will see all shipping methods with corresponding codes.