Need to send empty value in Salesforce connector

Varshi_Balaji
New Contributor III
New Contributor III

Hi team,

We are passing

"Sector":"${if(user.customproperty3 =='65'||user.customproperty3 =='52'||user.customproperty3 =='57'||user.customproperty3 =='58'){user.customproperty43}}", in salesforce connector(create account json).

Though in Saviynt I'm sending empty value 

Varshi_Balaji_0-1693406073158.jpeg

But in salesforce it is going as "null" but Salesforce team wants empty value and not "null " wordings

 

Varshi_Balaji_1-1693406073161.jpeg

Regards,

Varshita

 

1 REPLY 1

khalidakhter
Saviynt Employee
Saviynt Employee

Hi @Varshi_Balaji 

Please try the below syntax and let us know if it helps.

"Sector":"${user.customproperty3 =='65'||user.customproperty3 =='52'||user.customproperty3 =='57'||user.customproperty3 =='58'? user.customproperty43 : ''}"

Thanks