magento
Voeg een andere prijs toe voor meerdere winkels met behulp van Magento SOAP API
Zoeken…
Magento SOAP V1
U moet het prijsbereik 'Wereldwijd' wijzigen in 'website' (Sysytem-> Configuratie-> Catalogus-> Catalogus-> Prijs)
$client = new SoapClient('http://your-web-site/api/soap/?wsdl');
$API_USER = 'your-api-user';
$API_KEY = 'your-api-key';
$session = $client->login($API_USER, $API_KEY);
$result = $client->call($session, 'catalog_product.update', array('test-product', array('price' => '100'),'your-store-code'));
print "<pre>";
print_r($result);
print "</pre>";
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow