<?php require_once 'autoload.php'; use USPS\RatePackage; $rate = new \USPS\Rate('xxxx'); $rate->setInternationalCall(true); $rate->addExtraOption('Revision', 2); $package = new RatePackage(); $package->setPounds(15.12345678); $package->setOunces(0); $package->setField('Machinable', 'True'); $package->setField('MailType', 'Package'); $package->setField('GXG', array('POBoxFlag' => 'Y', 'GiftFlag' => 'Y')); $package->setField('ValueOfContents', 200); $package->setField('Country', 'Australia'); $package->setField('Container', 'RECTANGULAR'); $package->setField('Size', 'LARGE'); $package->setField('Width', 10); $package->setField('Length', 15); $package->setField('Height', 10); $package->setField('Girth', 0); $package->setField('OriginZip', 18701); $package->setField('CommercialFlag', 'N'); $package->setField('AcceptanceDateTime', '2016-07-05T13:15:00-06:00'); $package->setField('DestinationPostalCode', '2046'); // add the package to the rate stack $rate->addPackage($package); // Perform the request and print out the result print_r($rate->getRate()); print_r($rate->getArrayResponse()); // Was the call successful
require_once 'autoload.php'; use USPS\RatePackage; // Initiate and set the username provided from usps $rate = new \USPS\Rate('xxxx'); // During test mode this seems not to always work as expected //$rate->setTestMode(true); // Create new package object and assign the properties // apartently the order you assign them is important so make sure // to set them as the example below // set the RatePackage for more info about the constants $package = new RatePackage(); $package->setService(RatePackage::SERVICE_FIRST_CLASS); $package->setFirstClassMailType(RatePackage::MAIL_TYPE_LETTER); $package->setZipOrigination(91601); $package->setZipDestination(91730); $package->setPounds(0); $package->setOunces(3.5); $package->setContainer(''); $package->setSize(RatePackage::SIZE_REGULAR); $package->setField('Machinable', true); // add the package to the rate stack $rate->addPackage($package); // Perform the request and print out the result print_r($rate->getRate()); print_r($rate->getArrayResponse()); // Was the call successful if ($rate->isSuccess()) { echo 'Done'; } else { echo 'Error: ' . $rate->getErrorMessage(); }