How to send dictionary into orchestrator queue?

Hi There,

I’m having a Dictionary Variable (String, Object) and I want this to upload into Orchestrator queue.

How to achieve this ?

@Muralikrishna_Surve

Convert the dictionary to a string using serialize method and then store it as a string and retreive it and then use deserialize to get the dictionary back…

Or

Convert the dictionary to a string by adding the keys as values separated by pipe(|) and eqch dictioanry item separated by double slash(//)…

Now the dictionary is converted a string add this to queue and when you retrieve depending on the spearators again create a dictionary as needed

Hope this helps

Cheers