Which Magento Soap V2 method should be used for external links?

I am working on a script that imports all product information from the Magento 1.9.3.1 website.

I can’t find a way that allows me to get the external links data that are associated with each product.

(See screenshot)

enter image description here

Does anyone know which method I need to use?

A list of methods can be found here:

http://devdocs.magento.com/guides/m1x/api/soap/introduction.html#Introduction-APIMethods

I think I used all the methods related to the directory, but none of them seem to return the data I need.

+5
source share
1 answer

You can use this method: http://devdocs.magento.com/guides/m1x/api/soap/catalog/catalogProduct/catalog_product.update.html

From your screenshots, they look like user attributes. Get codes from the catalog> Attributes> Manage attributes. Then, in the call to catalog_product.update, include them in additonal_attributes as an array or arrays.

Example: 'additional_attributes' => array( array('key' => 'ready_link', 'value'=> '...'), array('key' => 'itunes_link', 'value'=> '...'), )

0
source

Source: https://habr.com/ru/post/1263784/


All Articles