# INSTALLMENT\_FILTERS

**Type**: `array` of filter objects\
**Default**: `[]` (empty array)\
**Validator**: `InstallmentFiltersSerializer`\
**Description**: Filters that restrict which installment options are available to users.

Each filter object has the following structure:

* `klass`: Filter class path (string from `InstallmentFilterType` enum, required)
* `kwargs`: Filter parameters (dictionary, required)

**Filter evaluation**:

* Applied sequentially in array order during `InstallmentService.filter_installments()`
* Each filter receives the basket, installments list, and additional context (currency, user\_email)
* Filters can remove installment options based on their criteria
* If a filter returns `final=true`, no further filters are processed
* Messages from filters are collected and returned to inform the user

**Used in**: `InstallmentSelectionPage`, `BexInstallmentSelectionPage` via `InstallmentService.get_pre_order_installments()` to filter available installments


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://apidocs.akinon.com/commerce-openapis/checkout/dynamic-settings/installment_filters.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
