The search criteria (URL encoded). Available fields: application, client, contact_email, contact_name, contact_phone, created, domain, id, last_contract, last_transaction, name, status, updated
Supports the following operators:
=: Exact match, separate multiple values with ; for IN operation
!=: Not equal
>=, >, <, <=: Greater than/equal, less than/equal
~=: Partial match (case insensitive)
<>: Between, separate values with ; (e.g., <>min;max)
!: Is null
!!: Is not null
Separate multiple criteria with commas (,)
Notes:
- Strings are case insensitive (with some exceptions)
- Booleans are Y/N (TIP: check for
=Y or !=Y as some objects treat false as null)
Examples:
status=ACTIVE;FAILING (status is either ACTIVE or FAILING)
status=ACTIVE;FAILING,[email protected] (status is ACTIVE or FAILING AND email is [email protected])
name~=Test (name contains 'Test')
created<>2023-01-01;2023-12-31 (created between Jan 1 and Dec 31, 2023)
scheduler=Y (scheduler is enabled)