Convert Queue item to dictionary

Hi team,

how can we convert output of “get transaction item” which is of type UiPath.core.queueitem into dictionary

@supermanPunch @Lahiru.Fernando

@som17 Check this Post :

it didn’t work

@som17 What have you tried ? Can you show using Screenshots?

dict_QueueItems = Newtonsoft.Json.JsonConvert.DeserializeObject(Of Dictionary(Of String, String))(item.SpecificContent(“Data”).ToString)

1 Like

Maybe the post is old but we did it the following:

Assign-Function:

from dict_name dicitonary<string,string> to in_transactionitem.specificcontent.todictionary(function(x) x.key, function(v) v.value.tostring())

Greetings

2 Likes