A way to filter accounts based on certain criteria.
Syntax:
• Colon (:): Assigns a value to an attribute (e.g., key:value).
• Pipe (|): Logical OR separator for multiple values of the same attribute (e.g., key:val1|val2).
• Comma (,): Logical AND separator between different attribute filters (e.g., key1:val,key2:val).
Example: $filter=profiles.solutionName:'Test1'|'Test2',identity.firstName:'test' will return records matching solution name('Test1' OR 'Test2') AND having the first name 'test'.