A quick question, in HTTP POST body I am passing a table details with columns. Here columns element is an array. I want to fetch the entire array.
I am using mule 4
Eg:
{
"TableName": "Customer",
"Columns": ["ID","Name"]
}
Expected Output: In a variable both columns: (ID, Name)
How can this be achieved?
Thanks in advance