Do we have any API(batch), to get the status of a given set of workflowIds as we might use this for polling and want to know the impact of performance
Thanks
We have an application that generates and submits workflows on Temporal. The application keeps the identity of the workflows. We have a listing page to show the last N workflows along with its last status
We need to write a rest api accepting an array of workflow ids and returning its the status list
There is no any API that takes a list of workflow Ids. You can use the listWorkflowExecutions API to achieve what you want using custom search attributes.