Hi Everyone,
I have a json as below.
{
"one": "1”,
"Two": 234567789,
"Three": null
}
I am using Json package and converting this to dictionary and looping through the keys of this dictionary.
Assigned key to a variable strKey of type string
used get action from dictionary package and stored the value in a variable strValue of type any.
Now while i am running the bot i am getting the error as 'value' expecting 'String' received 'Double'. in the Dictionary Get assign action
My requirement is to read the json and create a table dynamically. i dont know the datatype of json values, i just need to convert them to string