09/21/2023 05:13 PM - edited 09/21/2023 05:17 PM
Hello
We configured a REST Connector to access a REST API via OAuth2 authentication, it works fine.
However, when create account, the REST API need connect to backend Database to save some account information in database.
if we set the database connection credential string in createAccountJSON, it works. however, the credential is in clear text in this case.
Can I set such db connection string into connectionJSON of the REST Connector?
connectionJSON is encrypted so the credential is hidden this way. But how can I use it in creatAccountJSON?
For a Jar Connector, I can use ${connectionJSON.dbConnectionStr} refer to it. but looks REST Connector is not working this way.
Any idea how I can utilize ConnectionJSON for such credential information that need to be used in CreateAccountJSON?
Thanks.
Solved! Go to Solution.
09/22/2023 09:44 AM
I believe the below article will help to achieve your use case.
09/29/2023 05:11 AM
Thank you very much Sahil. It is exactly what I need.