Get QueueItem

Hello guys,

I have to get how many transaction items were successful in the previous day, therefore i used Get QueueItem activity, my issue is here: I have in each Folder several Queues, How can I use get QueueItem to get multiple Queues in the same folder on Orchestrator?

@Tarek_Kariish

You can peverage orchestrator http request activity to gwt the queue details of each folder…

Orchestrtaor api would hep in getting all the queue names . Please check this

For orchetsrator api filters and query parameters check the guide using thw swagger extension

Cheers

@Anil_G

Thanks for proposing this solution, I think it is helpful, but i’m facing a small problem, in swagger it is telling me that i’m not authorized. Any idea of how to solve this problem?

msg box

@Tarek_Kariish

You have to provide authorization details please check this on how to authorize

https://docs.uipath.com/orchestrator/v0/reference/authorizing-api-calls-in-swagger

You can create a external application to get clientid and secret

Cheers

@Anil_G

It worked and i was able to authorize, can you help with one more thing please?
Can you write me the code of how to use filter in Swagger, i want to say that i want to retrieve the queues that started 1 day ago, and i want to retrieve only the Successful and Failed only. Does that work ?

I really apricate your hep, thank you

@Tarek_Kariish

You can try something like this

$filter=(Status eq ‘Successful’ or Status eq ‘Failed’)and StartProcessing gt ‘2023-02-28T00:00:00.00Z’

Cheers