I am using SOAP v1 of the Magento API, I am trying to add an option to an attribute.
My Code:
$attributeCode = "feltColor";
$optionToAdd = array(
"Label" => array(
array(
"store_id" => 1,
"value" => "Green"
)
),
"order" => 0,
"is_default" => 0
);
But I keep getting the following error:
Fatal error: Uncaught SoapFault exception: [108] Default option value is not defined
Can't get it to work...any suggestions?