I’m getting the queue count at 25 because inside the queue total 25 items are there and few are processed but my requirement is to get those queue which are in new only
@postwick thanks for the quick response, but I require to clear the postponed date for those queue items that are in new so that bot will process them asap instead waiting for the postponed date or time
@postwick , Items are already added and I can’t add those records again to the queue. I can clear the postponed date manually but I want to clear those using API so that it will easy for me to do it for a bulk amount of queue
You aren’t adding them again. You’re adding new items without the postponement, and marking the original items complete so they won’t be processed.
Anyway, if you want to do it with the API, then you’ll have to manually submit an API call for each queue item using the odata/QueueItems method.
Best way to do that is to create an automation that uses Get Queue Items to get all the New items, then For Each and Orchestrator HTTP Request to update each one.