Home > OS >  How to get the URLs of sign document link of Docusign in our app?
How to get the URLs of sign document link of Docusign in our app?

Time:12-08

Is there any way to display all the documents/envelopes which are needed to be signed by the user in our app? or list all the links of these envelopes in our app so that when the user clicks it will take to Docusign UI same as how it works with email enter image description here

CodePudding user response:

Yes, you can, but there are some things to consider. First, you will need to make API calls to find all the envelopes that needed to be signed by the user.

From the Java SDK use the ListStatusChanges method to do that.

Then, for each envelope you found in the right status, you will want to generate a URL using the embedded signing feature.

However, don't do that when the page loads! These URLs expire after 2 min and so what you want is to generate them when the user clicks and redirect to the generated URL dynamically, or you'll have issues with the app.

  • Related