Advanced filtering with operators in the Ping Proxies API
Operator | Description | Supported Types | Example |
---|---|---|---|
min_ | Greater than or equal (≥) | Numbers, Timestamps, Dates | min_proxy_user_residential_bytes_limit=1000000 |
max_ | Less than or equal (≤) | Numbers, Timestamps, Dates | max_proxy_user_residential_bytes_used=500000 |
like_ | Contains substring (case-insensitive) | Strings | like_service_name=%residential% |
not_ | Not equal | All types | not_proxy_user_is_deleted=true |
exists_ | Checks Metadata key existence | Metadata keys | proxy_user_metadata.exists_client_id=1 |
min_
)min_
prefix finds items where the specified field is greater than or equal to the value:
like_
)like_
prefix performs a case-insensitive substring search. You can use the %
wildcard character to match any sequence of characters:
like_
operator is case-insensitive, so like_service_name=%PREMIUM%
will also match “premium”, “Premium”, and any other case variation.not_
)not_
prefix finds items where the field does not equal the specified value:
exists_
)