I am trying to download products using the Magento Core API product.create method.
Magento Enterprise 1.10
I have really great success, with the exception of inserting values ββfor the attributes of the drop-down list. I understand that you simply add the attribute code and its associated value as part of the "Params" array when you call the product.create method. I set the attributes as drop-down menus so that they can be included as a filter, and I added parameters or βvaluesβ before trying to insert products through the API. No matter what I do, the value will not be selected after a successful product download.
Here are examples of my syntax:
'resolution' => '3000', 'resolution' => 1, 'resolution' => array(1), 'resolution' => array('3000'), 'resolution' => 3000,
YES / NO values ββare accepted for boolean attributes, and I have no problem passing values ββto regular text fields. Any insight would be appreciated.
source share