api

  1. How to create custom helloworld api in magento

    How to create custom helloworld api in magento

    As we all know magento backend provides an interface for different operations. But sometimes we will need to access and transmit data from and to third-party systems.So for that magento...

    Read more »
  2. Magento: Create order programatically customer as guest in magento SOAP

    Magento: Create order programatically customer as guest in magento SOAP

    By using this code you can easily create order through magento api.

    [php]

    <?php

    $proxy = new SoapClient('http://yoursite.com/api/soap/?wsdl');
    $sessionId =...

    Read more »