How to update product price per Magento store view by SOAP API version2

Created by Nicole Le, Modified on Mon, 31 Jul 2017 at 09:42 AM by Robin Hoang

Step 1: Create an an API account to use SOAP 

You go to System >Web Services >SOAP/XML-RPC> Roles to create Roles

In Role Resources, tick Update (as the following image) to have rights to update products :


2017-04-03_175555.png


  • Next, you go to System >Web Services >SOAP/XML-RPC> Users to create users. In User Role, you choose Roles that you have just created. 

Step 2: Call API to update product price per store view 

  • Assume that the account created in the step 1 has the following information: 

  • User name: api

  • Password: api123

  • You use this code to run update:

 

// If some stuff requires api authentification,

// then get a session token

$session = $client->login('api', 'api123');

$result = $client->catalogProductUpdate(

$session,

{product_sku}, 

array(

    'price' => {price}, 

),

{store}  

);


*Note: you need to change some things such as: 

  • Replace {magentohost} by the domain of the website that you want to update 

  • Replace {product_sku} by the SKU of product that you want to update 

  • Replace {price} by prices that you want to update 

  • Replace {store} by store code or store idd of store that you want to update product price



For more information about product, please refer Multiple Store View Pricing page.

If you need any further assistance, please feel free to contact us.

Please visit our site for more useful Magento 1 Extensions: https://bsscommerce.com/extensions.html

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select atleast one of the reasons

Feedback sent

We appreciate your effort and will try to fix the article