FBT
A comprehensive list of the FBT allowed filterable fields values and operators
Last updated
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": { ... }
}Please find more information on how the FBT queries work here.
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 fielditem_ids
Object
One of:
"in": ["..."]
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