Is there a way to combine two values to be sent via Property Transfer?
{ "attributes": { "type": "Contacts", "url": "/services/data/v36.0/sobjects/Contact/abc123" }, "Id": "abc123" "Salutation": "Mr.", "Name": "Rob Long", "FirstName": "Rob", "LastName": "Long" }
I want to group $.Salutation and $.Name
What does work but not the way I want....
$['Salutation', 'Name']
The output is:
{Salutation=Mr., Name=Rob Long}
What I'm looking for is simply:
Mr. Rob Long