Hi All,
I am trying to get a string value from within a JSON object that I receive. I would like to have have a string after the ParseJSON step which shows the product names - "Product Name A;Product Name B;Product Name C;Product Name D"
[
{
"CustomerName": "Customer A",
"DocumentType": "Word",
"Product": [
{
"Value": "Product Name A"
},
{
"Value": "Product Name B"
},
{
"Value": "Product Name C"
},
{
"Value": "Product Name D"
}
]
}
]