0
Hello, I’m working on a webservice
that lists all products from my store and would like to set a filter that returns only products that have Qtde in stock, how can I do this?
below are my codes of how I’m doing :
$sessionId = $client->login('username','api_key');
$funcoes = $client->resources($sessionId);
$result = $client->call($sessionId, 'catalog_product.list');
I need some filter to return only the products they have in stock, thank you.
You need to see if People already have something ready or implement a base query that checks the field
qtd
is greater than zero, this part of the implementation is the server'.– rray
booa @rray ... I just did this kkkk thanks for replying
– Furlan