Did anyone got the Add to cart API of magento working?
$mage_url = 'http://server_path/magento/api/?wsdl';
$mage_user = 'xxxxx';
$mage_api_key = 'xxxxx';
// Initialize the SOAP client $soap = new SoapClient( $mage_url );
// Login to Magento $session_id = $soap->login( $mage_user, $mage_api_key );
after this i want to do Add to cart
any suggestion..