# Description of the function of distributing incoming requests among managers

### There are two options for distributing incoming requests among managers:

1. **Random** : New requests will be created for managers in a random order, regardless of the number of active deals each manager has.
2. **Uniform** : New requests will be evenly distributed among all managers.<br>

   **Example of an even distribution strategy**: \
   Let's assume there are three managers (with the number of their active deals specified): \
   Petrov (0), Ivanov (0), and Sidorov (0).

   **A new request appears**: \
   Petrov (1), Ivanov (0), and Sidorov (0). \
   **Then the next request will be created as follows**: \
   Petrov (1), Ivanov (1), and Sidorov (0). Next: Petrov (1), Ivanov (1), and Sidorov (1), and so on

{% hint style="info" %}
The function is available on the Pro plan
{% endhint %}


---

# 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://whatcrm.gitbook.io/whatcrm-docs/english/integrations-products/kommo.com/description-of-the-function-of-distributing-incoming-requests-among-managers.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.
