I have a queue and in that I have queue items with successful and failed state. I need to read all those queue items at the EOD

I have a queue and in that I have queue items with successful and failed state. I need to read all those queue items at the EOD?

I am using get transaction item to get the data but its not working it is saying no data today

I need any logic so that I can read the queue items data.
Any suggestions would be helpful.

Thanks,
nawaz.

Hi,

Get Transaction Item activity will get queue items with a status of New.

To retrieve all queue items for that day with Successful / Failed Status you need to use Get Queue Items

Here you can update the properties to set the From Date / To Date and also QueueItemStates

This will provide you with a IENumerable collection of Queue Items

1 Like

Try Using Get Queue Items, it will give you the collection of Queueitems based on the status.

You can achieve this using orchestrator APIs

@Mohammed_Nawazuddin

May I know how many items will be processed for the day ?

If it is less than 100 then you can use Get Queue Item activity by specifying the filtering condition with Successful and Failed.

If it is more than 100 then you need to use API calls or use Get Queue Item activity in loop by skipping already fetched items.

1 Like