Checkers
The checkers.py
module provides validation functions to ensure that filters and filter types used in API requests are supported. It prevents unsupported queries by raising appropriate exceptions.
Functions
check_type_filter
Validates whether a given filter attribute and filter type are supported.
Function Signature
Parameters
filter_by
(str): The attribute to filter by (e.g.,"firstName"
,"emailAddress"
).filter_type
(str): The filter operation to apply (e.g.,"contains"
,"equals"
).
Raises
OSUnsupportedFilter
: Raised if thefilter_by
attribute is not in the supported filters list.OSUnsupportedFilterType
: Raised if thefilter_type
is not in the supported filter types list.
Supported Filters
The following attributes can be used as filters:
Supported Filter Types
The following operations are supported for filtering:
Usage Example
To validate a filter before making an API request:
This module ensures that only valid filters and filter types are used, reducing the risk of API errors.
Last updated
Was this helpful?