Need help with people who has done coding to get shipping cost calculated form UPS's website. Basically I am trying to find out if there are existing category names for a package's height, width, length so I can get a more specific and accurate shipping cost if the package is over size. What I mean is for example the following code, "14_origCountry=" is to specify the original country to UPS's shipping estimator, and "23_weight=" is for weight. I want to know if there's antying like "24_height=" or so so I can enter the dimension of the package. I tried looking through UPS website and a lot of places but found no clue...
$url = join("&",
array("http://www.ups.com/using/services/rave/qcostcgi.cgi?accept_UPS_license_agreement=yes",
"10_action=$upsAction",
"13_product=$this->upsProductCode",
"14_origCountry=$this->originCountryCode",
"15_origPostal=$this->originPostalCode",
"19_destPostal=$this->destPostalCode",
"22_destCountry=$this->destCountryCode",
"23_weight=$this->packageWeight",
"47_rateChart=$this->rateCode",
"48_container=$this->containerCode",
"49_residential=$this->resComCode"
)