I have a Set Variable module after an array aggregator that returns an array in this format:
[
{
"hourType: [
{
"ID": "67c88cc4005f15d1a450b42e8932d576"
},
{
"ID": "67c88cc4005f15ce84e5c76a6eb095bd"
}
]
}
]
When I try to write it to a Workfront project it fails because it’s not expecting the opening and closing square brackets. How can I eliminate thos square brackets so I end up with this format that it will accept:
{
"hourType": [
{
"ID": "67c88cc4005f15d1a450b42e8932d576"
},
{
"ID": "67c88cc4005f15ce84e5c76a6eb095bd"
}
]
}
Thanks in advance for any advice!