Import Filtered Products
If you want to sync specific products according to your requirement (for example, if you want to sync specific SKUs, categories or apply filters on any other attribute), you can use the Filter option in our plugin. To do this, follow the steps below:
1. Go to Product Sync Settings → Filters → Create.

Note: Enable the View Pre-Configured Setup (in default suppliers) to see the above tab.
2. Create a new filter, name it, and select the API to which you want to add the filter.

Note: In the above example, we selected Equals for the SKU filter, so only those products whose SKUs exactly match the entered values (for example BG-AL-409, BG-OK-426-B...) will be synced.
Below are more matching options available in the dropdown with examples:
Sample Data:
{
"name": "Kids Cotton Graphic Tee",
"tags": ["tshirt", "cotton", "school", "kids"],
"colors": ["red", "blue"],
"category": "Kids / Clothing / Tops / T-Shirts / Graphic",
"brand": "Nike",
"stock": "150",
"material":"",
}
- Contains and Not Contains: Use when the attribute value is an array and you want to match one of the elements.
- Example: tags CONTAINS cotton
- Equals and Not Equals: Matches the exact attribute value.
- Example: brand EQUALS Nike
- Greater and Less Than: Used for numeric attributes.
- Example: stock > 50
- Is Null and Is Not Null: Matches empty or non-empty values.
- Example: material Is Not Null
- Like and Not Like: Used to match part of a string value.
- Example: category LIKE Tops