Magento – is it possible to create mobile app using the rest api / or soap

apimobilerestsoap

I'm evaluating is it possible to create a mobile app by using the rest api / soap. i've checked the rest api, seems there are some feature are missing in rest api, for example: adding the product into shopping cart, checkout

http://www.magentocommerce.com/api/rest/introduction.html

on the other hand, seems the soap is more complete
http://www.magentocommerce.com/api/soap/checkout/cartProduct/cartProduct.html

anyone has experience in magento api? is it possible to create mobile app (add product to cart then checkout) using the rest api / or soap and also using phonegap on mobile side?

Best Answer

The Magento 2 REST Apis are a lot more extensive than out of the box in Magento 1, and it is easy to add new Apis of your own to fill gaps. If you want to learn more, have a look at http://devdocs.magento.com/ and navigate to the "web service developer" menu.

(The documentation is still under development, but to get a feel of the new REST API coverage have a look at http://devdocs.magento.com/guides/v2.0/rest/list.html.)

Related Topic