Magento Core API allows us to retrieve the Orders Placed in a Magento Store. In this example we will be filtering the orders based on its status. Magento Webservices allows us to use Both Soap and XMLRPC for accessing the Core API, for this example i have used both in the below code snippet.
<?php$sessionId = $soapclient->login('YourAPIUser', 'YourAPIKey'); //Webservice User and API Key// Getting Order listing by Order Status// Example Usage: array('eq' => 'canceled') , array('eq' => 'processing'),array('eq' => 'complete')

