I am trying to build an Account Aggregation HTTP operation on a web service connector. Currently, aggregations are not recognizing attributes with spaces in their jsonpath. Data:
{
"data": [
{
"First Name": "Joe",
"Last Name": "Smith",
"Worker Email": "[email protected]"
},
{
"First Name": "Joe",
"Last Name": "Smith2",
"Worker Email": "[email protected]"
}
]
}
I’ve set root path to: $.data[*]. For the attribute mapping values, I’ve tried the following formats:
First Name
'First Name'
.'First Name'
"First Name"
I expected ‘First Name’ to be the solution but it does not work as I would expect. Anyone solve for this previously?