TransactionItem

Hi
is it possible to get the no of items in the orchestrator Queue?

thanks
Ji

@rpa2Ji
welcome to the forum

Have a look on the Orchestrator Rest API and do some practical RnD with swagger


https://docs.uipath.com/orchestrator/reference/api-references

start with following endoint
/odata/QueueItems

Also have a look here, when consuming the API

Hi @rpa2Ji
Yes you can.

you can able to get the count by the Output-> QuieItems → variable count.

@rpa2Ji
Use Get queue Items to check the count in queue.

Variable.count

Here You can fiter the queue states and priority too
image
image

@rpa2Ji
In addition to the alternate of using Get Queue Items (we also do like this activity) keep following on mind

  • The ORC Rest API allows us to ask for the entire count directly
  • The Get Queue Items Activity has a inital max limit of 100
    grafik

so when more then 100 items are to expect we have to page as well

for paging have a look here:

@rpa2Ji
HTTP Request.xaml (8.2 KB)
Here is demo for remaining items