Overview
The API provides a number of search routes. Refer to the documentation of the route for the list of supported search and filter terms.
Sending a Search Request
Code
Operators
| Operator | Meaning |
|---|---|
== | Equals |
!= | Not equals |
> | Greater than |
< | Less than |
>= | Greater than or equal to |
<= | Less than or equal to |
@= | Contains |
_= | Starts with |
_-= | Ends with |
!@= | Does not Contains |
!_= | Does not Starts with |
!_-= | Does not Ends with |
@=* | Case-insensitive string Contains |
_=* | Case-insensitive string Starts with |
_-=* | Case-insensitive string Ends with |
==* | Case-insensitive string Equals |
!=* | Case-insensitive string Not equals |
!@=* | Case-insensitive string does not Contains |
!_=* | Case-insensitive string does not Starts with |
Last modified on