Posts Tagged ‘magento web services api’:


export products details filtered by ‘created_at’ field between two dates/timestamps using magento api

Made R&D on it and found following code can help us $arguments = array(array(‘created_at’=>array(‘lt’=>’2011-05-25 00:00:00′))); but this is not complete solution we needed. Afte searching hard on google finally we got some solution on following link http://stackoverflow.com/questions/5844970/adding-filters-to-magento-web-services-api $arguments = array( ‘created_at’ => array( ‘from’ => ’2011-05-21 02:13:00′, ‘to’ => ’2011-05-22 02:22:00′ ) ); Full code

(Read More…)

Customer Export API, Product Export API,Order Export API ,Product Inventory Export, Product Inventory Update API in PHP and XML Tested in Magento 1.5.1.0

Customer Export API, Product Export API,Order Export API ,Product Inventory Export, Product Inventory Update API in PHP and XML Tested in Magento 1.5.1.0 This is very useful script to Export customer,product and order data in One PHP file. You just need to set your WEBSITE name in your file. and need to upload this folder

(Read More…)

© Open Source Rocks