Skip to content

Filtering

Most queries allow filtering the data returned via the filter query parameter.

The following filter operators are supported:

NameOperatorUsage example
Equal=FieldName = Value
NotEqual!=FieldName !=Value
LessThan<FieldName < Value
GreaterThan>FieldName > Value
GreaterThanOrEqual>=FieldName >=Value
LessThanOrEqual<=FieldName <=Value
Contains - Like=*FieldName =*Value
NotContains - NotLike!*FieldName !*Value
StartsWith^FieldName ^ Value
NotStartsWith!^FieldName !^ Value
EndsWith$FieldName $ Value
NotEndsWith!$FieldName !$ Value

Tip: If you don’t specify any value after = or != operators, the API searches for the default and null values.

NameOperatorUsage example
AND,FirstName = Value, LastName = Value2
OR|FirstName=Value|LastName=Value2
Parenthesis()(FirstName=*Jo,Age<30)|(FirstName!=Hn,Age>30)