Skip to content
Jim edited this page Feb 23, 2017 · 1 revision

Advanced filtering

Operators

Does Contains

/v1/users?last_name=\*jenk\*

Does Not Contain

/v1/users?last_name=!jenk!

Equals

/v1/users?last_name=jenk

Not Equals

/v1/users?last_name=!jenk

The API additionally support some more complex filtering options out of the box. They allow you the developer to provide additional ways to retrieve data without having to write any additional logic in your api end points.

/v1/users?last_name=NULL||

Check for Empty or blank values which is a complex ORed filter that checks for both NULL and otherwise blank values

/v1/users?last_name=!NULL||!=

Here is a complex check for IS NOT NULL or not empty strings. The API will convert thist

``

Between

We need to pass 2 values as a single string in the following format

/v1/users?age=~18~23

Clone this wiki locally