Is there limitation for orchestrater api?

Hello ,

I have requirement, where i need to hit api to get all the queue items,

is there any limit??

Hi @RobotUi

based on the docs this is the limit for GET/odata/QueueItems/

  • 100 API requests/minute/tenant for non-automation usage
  • 1,000 API requests/minute/tenant for automation usage

you can find the doc link below

@RobotUi

There is a linit of 1000 items for get queue items

Also 1000 api calls per min as well…I dont think you would reach this linit anyways unless you use those many bots

Cheers

Hi @RobotUi,

Yes, there is a limitation - only 100 queue items(via api as well as via get queue items activity) can be retrieved at once but you should be able to fetch rest of the items by running it in a loop and using skip and top filters to fetch next set of records.

Regards
Sonali

Can you teach me how to get queue items more tha 100

Hi @RobotUi,

You can do it via different ways, refer below threads:

Basically, it’s a pagination concept that you can apply Using skip and top filters to fetch the next set of records
image

Like using skip to define (100+) value and top to fetch next 100 values. It can fetch only 100 at the moment.
You can tweak below example according to your need by defining required values for skip and top filters in the query.
image

Regards
Sonali

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