I have below JSON data. I have JPath to read FirstName and LastName but to read both values using a single JSONPath expression is not getting. Can someone help me here to read the values for both the elements?
I want to read like Name=Rob|Long using JSONPath expression. I tried a few combinations but not working
{
"attributes": {
"type": "Contacts",
"url": "/services/data/v36.0/sobjects/Contact/abc123"
},
"Id": "abc123",
"Salutation": "Mr.",
"FirstName": "Rob",
"LastName": "Long"
}
Thanks in advance
Try with JayWay JsonPath:
This should do the trick:
concat($.FirstName,"|",$.LastName)
However, it doesn't seem to work with other JsonPath implementations.