Hello!
I need urgent help with this problem.
I’m trying to establish a connection with Docusign to automate and send documents, but the first step is that connection and it’s giving me a lot of failures.
I’m a bit of a novice in this UiPath thing but I have to present this automation to the teacher this week and I can’t get it to work.
Could someone help me? I leave screenshots of everything I have to help as much as possible.
THANKS!!!
As I understand it.
The integration Key would be the Client ID
And within that parameter I have obtained the SecretKey that is associated with Client Secret.
Did I put the Default in the Str_SecretKey variable wrong?
If I put the default in the variable In_SecretKey I get the error that the value type ‘string’ cannot be converted to ‘securestring’.
From the error received we see that there is correction to be done in the way the in_SecretKey is to be used.
You would not require to assign anything to Str_SecretKey using the Assign activity as it is already having a Default value.
You would require to convert the Str_SecretKey to a SecureString type and assign it to the variable In_SecretKey. We can do so by using the below Expression :
In_SecretKey = new System.Net.NetworkCredential(String.Empty,Str_SecretKey).SecurePassword
Replace the expression that you have used with the above Expression.
Also, Not so sure, but the url contains a * at the end. Is it a typo ?