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

REST connector config

asp
Regular Contributor
Regular Contributor

Hi all,

When you go to configure a REST Connector, once you have set up the 'connectionJSON' and 'saved' the connection object, this field shows up hashed and not in clear text. It makes it difficult to identify issues, or triage if the connection parameters aren't correct. Is this the expected behavior? Is there a way to make the UI not hash this field, after it has been updated the first time?

image.png

9 REPLIES 9

rushikeshvartak
All-Star
All-Star

Confidential information should be masked. If you don’t need information to be masked then go to admin - identity Repository - connection - connection types - rest

remove connectionJSON from show encrypted values

this is not best practices


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

Thanks for the info! Is there a special role to remove this field? Cannot do this for role_uiadmin and role_admin. I also checked the documentation but did not find anything.

https://saviynt.freshdesk.com/support/solutions/articles/43000541585-updating-connection-type

This needs to be done from DB (Table name : externalconnectiontype)

rushikeshvartak_0-1669771375474.png

Best practices - Enable REST Questionaries from Global Config -> Preference - Features

rushikeshvartak_1-1669771499261.png

Rest Questionnaire

Do you want to enable self explained widget to configure Rest connector?

Output :

rushikeshvartak_2-1669771571614.png


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

asp
Regular Contributor
Regular Contributor

I think we do have this enabled. But the issue is that we don't want the connectionJSON to be hashed. As that makes it incredibly cumbersome to triage connectivity issues or to make changes - much easier if we can see the JSON versus use the GUI and have the popup generate the json behind the scenes.

asp
Regular Contributor
Regular Contributor

I am not seeing this table in my Data Analyzer view (list of tables).

Raise Saviynt Freshdesk ticket


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

Try via analytics.

You should be able to view.

Regards
Manish Kumar
If the response answered your query, please Accept As Solution and Kudos
.

rushikeshvartak_3-1669917161090.png

select ENCRYPTEDATTRIBUTES,CONNECTIONTYPE from externalconnectiontype where CONNECTIONTYPE='REST'

or

you can run query from custom query

update externalconnectiontype set ENCRYPTEDATTRIBUTES=null from where CONNECTIONTYPE='REST' limit 1;


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

@asp  if above solution worked close the thread


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