<aside> 💡 Tip: To easily get the code for a filter, you can run the filter in Beacon and copy the code from your browser’s console.
</aside>
{
"filter_conditions": [
{
"field": "field_name",
"operator": "operator",
"value": "value",
}
],
"filter_strictness": "all"
}
is
"operator": "==",
"value": "abc"
is not
"operator": "!=",
"value": "abc"
starts with
operator: "starts_with",
value: "abc"
ends with
operator: "ends_with",
value: "abc"
contains
"operator": "contains",
"value": "abc"