Hello guys, I have a question. I constantly get a Excel file with a data table that has headers and information that needs to be imported into a webpage via HTTP request wizard. My question is how and is it even possible?
This is how the excel data looks:
If my thoughts are right, I need to read the data table in excel, then use assign activity to serialize it to Json Object with
JsonConvert.SerializeObject(dtTable)
and simply pass it to HTTP request wizard’s body? But what about the parameters? Should I do anything there?