Magento API v1 product list call on VB.NET
What is the equivalent of this for VB.NET? $filters = array('sku' => array('like'=>'zol%')); $products = $proxy->call($sessionId, 'product.list', array($filters)); Because I am trying to retrieve a specific product from Magento by doing something like this: Dim products = magentoV1_servico.call(magentoV1_sessao, "product.list", filters)…