I am trying to add some additional attributes while creating a new product.
Magento Version: 1.9.2.2
Language: C#
Endpoint:
/index.php/api/v2_soap/index/?wsdl%2Fmex=
When trying to access the class catalogProductAdditionalAttributesEntity I get a missing assembly reference and that it can't be found. Has anyone experienced this, have a workaround or am I doing something wrong?
associativeEntity[] AdditionalAttributes = new associativeEntity[1];
associativeEntity AdditionalAttribute = new associativeEntity();
AdditionalAttribute.key = "imageurl";
AdditionalAttribute.value = tokens[20].ToString();
AdditionalAttributes[0] = AdditionalAttribute;
I've been using this as a reference: https://community.magento.com/t5/Italian/Additional-Attributes-c-e-SOAP-v2/m-p/1615#M57
Thank you.