Get queue items based on which are updated today and not created today

Hello,

I am looking to generate a report from queue items. I am using get queue items function where I see from and to date parameters. These dates are operating on basis of creation date of the queue item and not updated date (start time/end time). Now I want the report to be created for items which are processed today and some status update is made and it is possible that queue item was not added today. Please help if you know best way to handle this requirement.

I can always get all queue items and filter them in code but looking for an optimized way to pull the data from queue.

@SnehajitDas

Use status successful or failed and then using linq query filter based on last processing time

Else you can use orchestrator http request with getaueueitems api and that supports filter on lastprocessingtime as well so can add the same

api reference - <orchestratorurl>/swagger/index.html

Cheers

Hi @SnehajitDas

By using Get Queue Items also you can achieve it. & Then write that data table to Excel & then filter it as per your need.

But I would say Orchestrator HTTP request is better way.

Hope this helps :slight_smile: