Magento 1.9 – Fetching Cart Info for Existing User Using SOAP API

magento-1.9soap

How do I get the cart details of an existing user using Magento SOAP API?

I have an e-commerce Application based on Magento. There is already a desktop webpage for this e-commerce application. My use case is this –

-> User logs in from desktop webpage and then adds an item to the cart -> User now logs in with the same credential from mobile

I want to be able to show the item that is being added from the desktop page. But right now I don't see any SOAP API which helps me query any existing cart info for a user.

Note: I am trying this from an Android Application. So please suggest anything that I can with the SOAP API's

Best Answer

There is no method to return the alredy existing shopping cart via SOAP API.

To share shopping carts via multiple devices, have a look at the persistent shopping cart functionallity which was introduced in Magento 1.6. With this you can share the shopping cart between your desktop page and mobile device.

Related Topic