Skip to content

String filters

Filters that compare a field to a string value or array of strings.

A filter that applies a comparison to a string value.

PropertyTypeRequiredDescription
operatorEquivalenceOperators | StringOperatorsYesThe operator to apply to the filter value.
valuestringYesThe value to use for the filter operation.
{
"operator": "eq",
"value": "value"
}

Filters by comparing a field to an array of string values.

PropertyTypeRequiredDescription
operatorArrayOperatorsYesThe operator to apply to the filter value.
valuestring[]YesThe value to use for the filter operation.
{
"operator": "in",
"value": [
"value1",
"value2"
]
}