开发者

C# Magento API - Get a list of the child products belonging to a bundled product?

开发者 https://www.devze.com 2023-04-04 15:32 出处:网络
U开发者_如何学运维sing the Magento API is it possible to find what simple products are the child products of a bundled product?

U开发者_如何学运维sing the Magento API is it possible to find what simple products are the child products of a bundled product?

I have tried this but catalogProductLinkList returns 0 results:

MagentoService _magento = new MagentoService();
string sessionId = _magento.login(user, key);
catalogProductLinkEntity[] relatedProducts = _magento.catalogProductLinkList(sessionId, "grouped", "sku_of_bundle", null);
if (relatedProducts != null && relatedProducts.Count() > 0)
{
    // do something
}
0

精彩评论

暂无评论...
验证码 换一张
取 消