Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Converting string in base 64 and storing in cp of account

supriya15
New Contributor
New Contributor

Hi Team,

We have a requirement we are trying to convert account name in base 64 and then pass that string in update and delete account url in one rest connector. How can we convert the account name in base 64 after importing accounts in saviynt and can store them in cp of account. 

modifyuserdata json will not help here as it is not executed on account import. and in account import only mapping of attributes is there so we cannot make any change there as well.

Regards,

Supriya

1 REPLY 1

rushikeshvartak
All-Star
All-Star

use enhanced query 

select accountkey as accounts__primarykey,TO_BASE64(name) as accounts__customproperty11 from accounts where endpointkey =11 and status=1 limit 1;


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.