
kindly enable debug option in plugin settings and then create shipment. Once they are opened, they must be used within 2 weeks.

Labels that are sent by email can be printed and used for up to 2 weeks, even if they are not opened. When I press the Generate Packages or Create Shipment nothing happens, the page just reload while nothing else changes. Some FedEx labels expire after a period of time, but they might differ depending on the products you ship.

SetParameter ( 'toCompany', 'RocketShipIt' ) $shipment -> setParameter ( 'toName', 'John Doe' ) $shipment -> setParameter ( 'toAddr1', '111 W Legion' ) $shipment -> setParameter ( 'toCity', 'Whitehall' ) $shipment -> setParameter ( 'toState', 'MT' ) $shipment -> setParameter ( 'toCode', '59759' ) $shipment -> setParameter ( 'referenceValue', '123adsf' ) $rate = new \RocketShipIt\Rate ( 'STAMPS' ) $rate -> setParameter ( 'toCode', '59759' ) $rate -> setParameter ( 'weight', '5' ) $response = $rate -> getAllRates () $rates = $response -> Rates $rate = $rates -> Rate # Select the rate/service you want # from a list of all available $package = $rate # Remove all addons $package -> AddOns = null # Add the addons you want for this # shipment $addons = array () $a = new \stdClass () $a -> AddOnType = 'US-A-DC' array_push ( $addons, $a ) $package -> AddOns = $addons //print_r($package) // The rate can suggest a new zipcode // Set this new zipcode on the shipment to avoid: // "Rate ToZIPCode and Destination Address ZIPCode field must match. I have installed the FedEx plugin and then followed the instructions on this page to the letter.
