문제

I wants to associate simple products to configurable product from while creating the configurable product using soap api in magento1.9

도움이 되었습니까?

해결책

catalog_product_link.assign SOAP V1 API method helps you achieve it.

Sample Code to associate products

$client->call($sessionId, 'catalog_product_link.assign', array('configurable', $configurableProductSku, $associatedSimpleProductSku));

Go through this magento article to get a grip on it.

Edited:

The association between a child and configurable products is different from the way it does with the rest of the product types ( like cross sell, up sell, grouped )in magento. Apparently, there is no direct SOAP method to provide such association. So, this extension will achieve what you need.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top