Hello Alteryx Community,
I am trying to convert a table data to JSON.
example table has the following values.
ID: 1
First_Name: Jane
City: London
Country: UK
Participant: 123
I am looking to have the above values converted to the following format.
{
"values" : {
"ID" : "1" ,
"First_Name" : "Jane" ,
"City" : "London" ,
"Country" : "UK" ,
"Participant" : "123"
}}
Appreciate the help. Thank you.