-
Notifications
You must be signed in to change notification settings - Fork 12
Advanced Filtering
Jim edited this page Feb 23, 2017
·
1 revision
/v1/users?last_name=\*jenk\*
/v1/users?last_name=!jenk!
/v1/users?last_name=jenk
/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.
Check for Empty or blank values which is a complex ORed filter that checks for both NULL and otherwise blank values
Here is a complex check for IS NOT NULL or not empty strings. The API will convert thist
``
We need to pass 2 values as a single string in the following format
/v1/users?age=~18~23