01/05/2023 11:20 PM
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
Solved! Go to Solution.
01/08/2023 07:49 PM
Currently its not supported. Please raise enhancement Request with saviynt
02/28/2023 10:10 PM
@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.
02/28/2023 10:37 PM
Thank a lot @RakeshMG, much appreciated!