Tag Archives: soap

Fedex Web Service Change: Impact on Magento & Free Patch

Earlier this week some Magento merchants began to experience issues with the standard FedEx carrier including issues retrieving rates, tracking information, and generating labels. Magento Certified Developer Phillip Jackson (www.somethingdigital.com; on Twitter @philwinkle) was one of the first to dig into this issue and helped us narrow down the cause. What happened? Beginning on Sunday, March […]

Posted in Administering Magento, Fedex | Also tagged , , , , | 3 Responses

Magento API – Get Product Details

I was writing a little code snippet tonight to get the name and url for products in a particular category. Its quite simple to do with the Magento API, here is the code: <?php $soapUrl=’http://www.testdomain.com/’; $apiUser=’karen’; $apiPass=’my_api_key’; $proxy = new SoapClient($soapUrl.’api/soap?wsdl’); $sessionId = $proxy->login($apiUser, $apiPass); $productArr = $proxy->call($sessionId, ‘catalog_category.assignedProducts’, array(’33’)); $extnDetails=array(); foreach ($productArr as $product) […]

Posted in Developing with Magento | Also tagged , , | Leave a comment