You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
I'm calling SOAP service from C# application, I need to list all products that are enabled (status = 2) with pagination (pageSize = 500). the filter object only let me filter the status. How could I add pagination to the query?
var filters = new filters
{
filter = new List<associativeEntity>
{
new associativeEntity
{
key = "status",
value = "2"
}
}.ToArray()
};
var client = (PortTypeClient) IndexItem.Indexer.Connection.ApiConnector.Client;
var entities = client
.catalogProductList(
((ISoapApiConnector)IndexItem.Indexer.Connection.ApiConnector).SessionId,
filters,
IndexItem.Indexer.Connection.ResourceConnection.StoreId
);