Orchestrator HTTP Request, TIME

Hey Community!

I have a queue that has queue items since 1 year, and I wanna get the queueItems using API, when I tried, the results were either since 1 month or the last 100.

Any idea on how can get that?

Appreciate any help thnx

Hi @Tarek_Kariish

By default it takes the top 100 which were added considering the Priority and deadlines.
if you want to obtain them and there are only a handful of those queueitems,
I’ll ask you to change priority of those queue items to high so that they could be taken first.

Thanks :slight_smile:

@Tarek_Kariish

100 is the default limit

If the items are present…then use filters to get the old items instead of the new ones

Cheers

Hi @adiijaiin

Thanks for your answer,

let’s say that I have 5000 QueueItems,
but is there any way to get all of them at once ?

Hi @Anil_G

Thanks for your answer,

let’s say that I have 5000 QueueItems,
but is there any way to get all of them at once ?

All at once is not possible.

But i did see a post to take it in Batches.

Check this post, the same could be applied through API.
There should be a unique identifier for last record fetched or unique id.

@Tarek_Kariish

All at once is not possible…but you can use pagenation or skip the previous retreived items and get the next set of items liek that you cna get all 5000 items

Cheers

for this we use the paging along with optional filters. have a look on skip and top options like

Top=100, skip=0 - 0-100
Top=100, skip= 100 - 100-200

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