I have installed mageworks advanced custom option extension in magento.
I am trying to fetch product custom option using soap api v2
I am able to get only following details
Title
Sku
sort_order
Price
And I required following details
Description
Qty
I am 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);