I have a scenario where the Queue items contain new and postponed items.
I need to check the transaction item before processing it whether it is a new item or posted item.
Hi @GowriKadati
I believe you can only fetch the required queue items first via the Get Queue Items activity and then iterate over these items:
To differentiate you can may log any unique id for the items you are postponing and use thst logged ones to differentiate later.
Or
You can try adding an extra field in queue iten with say status= postpone.
Or
You can try using creation date- if it works in your scenario
Use the DeferDate property to know if the item has been postponed.