Productsup

Filtering

Filter and paginate product data from the Export API.

You can filter exported data three ways: no filter, simple filtering, and advanced filtering. Without filter parameters, the API returns all products. Simple filtering lets you search for one or more values in a specific column. Advanced filtering lets you build multi-criteria queries.

Examples throughout this section use the following schema:

CREATE TABLE IF NOT EXISTS `data` (
   `id`           TEXT,
   `color`        text DEFAULT '',
   `name`         text DEFAULT '',
   `email`        text DEFAULT '',
   `countryCode`  text DEFAULT ''
);

The queryable columns and returned attributes depend on your data schema.

How is this guide?