Is there an endpoint to update multiple authentication executions of a Flow using Admin REST

Based on https://www.keycloak.org/docs-api/18.0/rest-api/ I can see there is an endpoint Update authentication executions of a Flow

PUT /{realm}/authentication/flows/{flowAlias}/executions

The issue is that this endpoint only accepts a single AuthenticationExecutionInfoRepresentation on the request body and I need to update 10+ executions so I have to make multiple calls to this endpoint its time consuming. I am wondering if there is an endpoint where I could pass a list of all the executions i want to update and it would reduce the calls to 1. In a similar way there are other endpoints for example when I want to get a client or user I need to know the id beforehand and cannot get the details by alias.