How to get top 10 queue items using Orchestrator Http request activity?

Hi All,

I want get top 10 queue items using Orchestrator Http request activity, by default we are getting 1000 queue items. Can someone help with this?

Rate Limit for Results Displayed for Automation Cloud Orchestrator API Request

Note that, for Automation Cloud Orchestrator services, the results displayed by the API requests are limited to 1000 entries for each page.
You can use $top and $skip parameters in your requests to retrieve subsequent pages. For example, use the GET https://cloud.uipath.com/odata/QueueItems?$top=1000&$skip=2000 request to retrieve the robot log entries between 2001 and 3000.

https://docs.uipath.com/orchestrator/reference/building-api-requests#skip
https://docs.uipath.com/orchestrator/reference/building-api-requests#top

So in your case it will be https://cloud.uipath.com/odata/QueueItems?$top=10&$skip=0

(it will retrieve only the first 10 QueueItems)

2 Likes

@marian.platonov Thanks bro for your time

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.