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

Mask user fields to hide PII details

tej2099
New Contributor III
New Contributor III

Hi All,

We need to hide few User Attributes which contains PII details like (social security number (SSN), passport number, driver's license number) to  meet controls.

Could you please let me know, how we can achieve this?

Regards

3 REPLIES 3

rushikeshvartak
All-Star
All-Star

Currently its not supported. Please raise enhancement Request with saviynt


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

RakeshMG
Saviynt Employee
Saviynt Employee

@tej2099  Please check if following document helps your requirement, please try this using API call :

HCP 

“H” stands for hashing.

Specifies that after the data is added in EIC, it is automatically hashed when it is stored in the database and cannot be decrypted. You can use HCP attributes for storing very sensitive information like SSN. As the data is hashed, the only option to validate it is by using the validateUserData API.

ECP 

“E” stands for encryption.

Specifies that the data is stored in an encrypted format when added from REST APIs but can be decrypted while retrieving it in the connection. You can use this attribute for storing less sensitive information.

When this attribute is added to a connector, it is automatically decrypted before it is passed to the target application. In Analytics, it is displayed in the encrypted format.


https://docs.saviyntcloud.com/bundle/EIC-Database-Schema-Reference/page/Content/Database-Schema-Refe...


​Regards

Rakesh M Goudar

tej2099
New Contributor III
New Contributor III

Thank a lot @RakeshMG, much appreciated!