I am working on SalesForce-DocuSign Integration (eSignature Process). I have successfully connected to Docusign demo environment and tested the APIs & functionality is working as expected.
In my code username, password and Integrator key are hardcoded .
// Enter your DocuSign credentials:
String UserName = "[email protected]";
String Password = "abc";
String IntegratorKey = "****************************";
Soon,the code will be moved to production org. When end users started using esignature process, same credentials (Username and password. Example above username and password) can be passed to connect to DocuSign API everytime or the user specific credentials should be passed to connect to Docusign APIs? What is the the best approach for this ? Any ideas.
Thanks.