Whenever I attempt to search for SKUs using the IN operator, I get back an empty result. If I do the same thing using hs_object_id, then I get back the correct results. Can’t seem to figure out if that property just can’t be searched using the IN operator, or if I’m doing something incorrect.
Here’s the body of my request
{
“filterGroups”: [
{
“filters”: [
{
“propertyName”: “hs_sku”,
“operator”: “IN”,
“values”: [
“PX”, “PX2”
]
}
]
}
],
“sorts”: null,
“query”: null,
“properties”: [
“hs_object_id”,
“hs_sku”
],
“limit”: 100,
“after”: 0
}