First record of queue

i want to get all the data of first queue item

Hi @ankitasharma443396
Use Get Queue Items activity and store the results in variable queue_data

Now use

queue_data.ElementAt(0).SpecificContent(“fieldname”), to get the first queue data

cant we get whole field values in one go.
if i use specific content , i have to use assign for every column value

U can loop through the queueitem.SpecificContent as it is a dictionary
:blush:

Hi @ankitasharma443396,

Your question is same as the one asked here : Extracting Specific Data Json

As @NIVED_NAMBIAR said you have everything you need of the first or any queue item in the SpecificContent of the item.

1 Like