Skip to main content
Filters are provided as a list of keys and filter specifications. The keys are names of fields that can be returned in the response. Not all fields support filtering. Multiple filters are combined using “AND” logic. For example, to find orders that were created after 2023-01-01 and are not completed the filters could be specified like so:
Request

Filters

eq
any
The value is equal to the given value.
neq
any
The value is not equal to the given value.
starts
string
The value starts with the given value (prefix match).
gt
number
The value is greater than the given value.
lt
number
The value is less than the given value.
gteq
number
The value is greater than or equal to the given value.
lteq
number
The value is less than or equal to the given value.
from
string
The value is greater than or equal to the given value. If the “datetime” flag is specified the value is compared with the exact timestamp given, otherwise the value is compared with the first second on the given date. The timezone is the merchant’s configured timezone.
to
string
The value is less than or equal to the given value. If the “datetime” flag is specified the value is compared with the exact timestamp given, otherwise the value is compared with the last second on the given date. The timezone is the merchant’s configured timezone.
in
array
The value is equal to one of the given values. This can be used to locate multiple records with one query.
nin
array
The value is not equal to any of the given values.
null
integer
The field’s value is null (has no value).
notnull
integer
The field has a value that is not null.