-
- erik89

-
Total Posts: 2
Joined: 2012-09-26
|
Hello,
I’m working in Magento API v2, in C#. I’m trying to retrieve products belonging to certain category ids, using a complex filter.
However, I don’t know what the value of my associative entity should be when filtering category_ids because the value that I want to look at is an element of a string array. (or maybe I’m using the wrong key?)
I’ve found a lot of solutions for PHP, but none so far for C#.
My code is as follows:
filters f = new filters(); f.complex_filter = new complexFilter[] { new complexFilter() { key = "category_ids", value = new associativeEntity { key = "in", value = "???" } } };
catalogProductEntity[] result;
result = this.client.catalogProductList(this.sessionId, f, "default");
|