Reputation: 79
I have completed the setup of embedded signing using docusign for a C# MVC site. I would like to retrieve the signed docs from docusign in the form of a link - like click on link and access the docs(without having to sign in docusign) to see if the user has signed or not etc or download it as a pdf on my site. Is there a way to do this via a rest call may be ? I tried this REST call from the documentation - /restapi/{apiVersion}/accounts/{accountId}/envelopes/{envelopeId}/views/correct .. but it did not really get me what I wanted.
Thanks much!
Upvotes: 2
Views: 1595
Reputation: 9356
Yes you can easily retrieve (download) the envelope documents through the API. One of the API Walkthroughs show code in how to do this in 6 different languages, and if you want the raw REST(ful) info you can check out this page from the API docs.
For the API Walkthroughs see #6 labeled "Get Document List & Download Docs":
http://iodocs.docusign.com/apiwalkthroughs
Upvotes: 1