Does "per document monitor" also support "action throttling"?

Versions (relevant - OpenSearch/Dashboard/Server OS/Browser):
2.11.1 docker
Microsoft Edge

Describe the issue:
Is it possible to configure “action throttling” also for “per document monitor”?
or something similar?

It seems that the UI doesn’t support action throttling for per document monitor, but actually we can achieve that by calling the update monitor API:

PUT _plugins/_alerting/monitors/<monitor_id>
{
          ...
           "throttle_enabled": true,
            "throttle": {
              "value": 27,
              "unit": "MINUTES"
            },
          ...
}

It is updated, but it has no effect whatsoever.
Or did it work for you?

I’ve not tried that, if it doesn’t work, would you mind creating an issue in the Github repo: Issues · opensearch-project/alerting · GitHub?

When you take action on multiple document at once, then consider using the bulk API, this allows you to delete, index, and update multiple document with the single request.

but what does that have to do with alerting? genuine question