FBT

A comprehensive list of the FBT allowed filterable fields values and operators

To perform an FBT query send a POST request to the /analysis/fbt endpoint specifying the item ID(s) in the filter without any extra query keys:

{
  "filter": {
    "line_items": {
      "item_ids": {
        "in": [
          "...",
          "..."

          // ...

        ]
      }
    }
  },
  "meta": { ... }
}
circle-info

Please find more information on how the FBT queries work here.

Filterable fields and allowed operators

Please find below the full list of the fields (and related attributes) you can use in the filter object of a FBT query, and the associated allowed values and valid operators.

line_items field

Attribute
Type
Values

item_ids

Object

One of:

"in": ["..."]

circle-info

The item_ids.in object is a list of SKU or bundle IDs associated as line items to one or more orders and the in operator works according to the AND logic (i.e. matches all of the specified array's values).

Last updated