FilterGroup
A group of filters that are combined with AND logic. Multiple filter groups are combined with OR logic. Follows HubSpot-compatible structure for familiar CRM integration patterns.
- filtersType: array object[] · Filter[] 1…6required
List of filters that are combined with AND logic within this group. At least one filter is required per group. Maximum 6 filters per group (following HubSpot limits).
A single filter condition for search operations. Follows HubSpot-compatible structure for familiar CRM integration patterns.
- fieldType: stringrequired
The field name to filter on (e.g., "email", "firstName", "tags", "createdUtc"). Must be a valid searchable field for the entity type.
- operatorType: string · FilterOperatorenumrequired
The comparison operator to use for this filter.
values- Eq
- Ne
- Gt
- Gte
- Lt
- valueType: null | string
The value to compare against (for single-value operators like eq, contains, gt). Not used for isNull/isNotNull operators or multi-value operators.
- valuesType: array string[] | null
Multiple values for array operators (containsAny, containsAll). Not used for single-value operators.