Forum Discussion

rlong98's avatar
rlong98
Contributor
8 years ago

JSONPath Combine or Group two values in Property Transfer

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

2 Replies

  • 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

    • nmrao's avatar
      nmrao
      Champion Level 3
      Have you just tried - "${Salutation}${Name}"