Filters for list functions 1 Filters 2 Filter structure 3 Operators 4 Keys The API supports filtering functionality on list functions using various operators on different keys to refine the query results. FiltersThe API parameter filters accepts an array of filter objects, allowing 0 to n filters to be applied.Exemple based on the contactList function:{ "firstName": { "LIKE": "Foo%" }, "idContact": { ">=": "XX001", "<": "XX999" }, "bodyForm": { "IN": ["IND", "ORG"] }, "IsOwner": { "<>": "1" }} Filter structureEach filter object consists of:Key: The attribute on which the filter is applied.Operator: Specifies the type of comparison or operation to be performed.Value(s): The value(s) to be compared against based on the operator.Value Type Length Descriptionfilters array0-nList of filters to be appliedfilters.{key} array1-2Array containing the filter for the key{key} string0-nKey to apply the filter tofilters.{key}.{operator} string|array0-nValue(s) to be compared against{operator} string1-8Operator used for filteringFilter examples :ComparisonExampleSingle value"{key}": { "{operator}": "{value}"}Multiple values"{key}": { "{operator}": [ "{value1}", "{value2}" ]}Multiple operators"{key}": { "{operator1}": "{value1}", "{operator2}": "{value2}"} OperatorsAvailable Operators:OperatorExpected value typeCombinableDescription=stringNoEqual to<>stringNoNot equal toINarrayNoMatches any value in a given setNOT INarrayNoDoes not match any value in a given setLIKEstringNoMatches a patternNOT LIKEstringNoDoes not match a pattern>stringYesGreater than>=stringYesGreater than or equal to<stringYesLess than<=stringYesLess than or equal toTwo operators can be combined by using > with < or <=, or < with > or >= for range-based comparisons. KeysKeys are specific to each function. For more information, see the corresponding pages.Get operations listGet domains listGet contacts listGet hosts list