Operator | Description | Example |
---|---|---|
eq | Equals (default) | filter[payment_status]=0 |
gt | Greater than | filter[summary_total][gt]=1000 |
gte | Greater than or equal | filter[summary_total][gte]=1000 |
lt | Less than | filter[summary_total][lt]=5000 |
lte | Less than or equal | filter[summary_total][lte]=5000 |
like | Contains (text search) | filter[business_name][like]=john |
in | In | filter[payment_status][in][]=0 |
not_in | Not In | filter[availabe_online][not_in][]=1 |