php - Magento Soap api product custom option list not getting all options -
i have installed mageworks advanced custom option extension in magento.
i trying fetch product custom option using soap api v2
i able following details
title
sku
sort_order
price
and required following details
description
qty
i using following snippet
 $proxy = new soapclient('http://magentohost/api/v2_soap/?wsdl');  $sessionid = $proxy->login('apiuser', 'apikey');  $result = $proxy->catalogproductcustomoptionlist($sessionid, '1');  var_dump($result);       
try $result = $proxy->catalogproductcustomoptioninfo($sessionid, '1');
Comments
Post a Comment