function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AaranAaran 

Empty URL custom field update using REST API

Hi, 

 

I want to update a custom URL field in jive from salesforce using REST API services.  for example: 

In jive FACEBOOK field is sets to "www.facebook.com" for a user.  

In Saleforce FACEBOOK field is sets to empty for the same user. 

I want to update the Facebook field from SF to Jive which should make the Facebook field empty in JIVE.  What should be the json format for empty URL link? 

 

none of the json formats listed below are working 

Profile:[jive_label=Facebook, value=]

Profile:[jive_label=Facebook, value=null]

Profile:[jive_label=Facebook, value=""]

 

json string from JIVE

"profile" : [ {

      "value" : "www.facebook.com",

      "jive_label" : "Facebook"

    }, {

      "value" : "https://twitter.com",

      "jive_label" : "Twitter"

    } ]

 

digamber.prasaddigamber.prasad

Hi,

 

Possible json format from salesforce can be:-

 

"profile" : [ {
"jive_label" : "www.facebook.com",
"value" : ""
}]

 

Let me know if you have any other question.

 

Happy to help you!