Reputation: 13
I am using Docusign (REST API) with ASP.NET MVC to display the document in embedded view when the user clicks on a button. When the user signs the document and clicks finish I should be able to get the data in the signed PDF (such as signature, name and other details). I looked into different documentations, but not sure of how to extract the data.
Can any one please help me with that?
Thanks.
Upvotes: 0
Views: 268
Reputation: 6808
You can get the FormData from a Signed Envelope using
GET /v2/accounts/{accountId}/envelopes/{envelopeId}/form_data
as explained here, https://docs.docusign.com/esign/restapi/Envelopes/EnvelopeFormData/get/ or you can use DocuSign connect as well to push the data to your listeners
https://www.docusign.com/blog/dsdev-webhooks-dont-poll-us-well-call/
Upvotes: 1