I am trying to embed docusign on my website by using powerform. As of now I am using demo account and I am stuck with using DocuSign connect how would I create a sample connector and fetch XML data.
Asked
Active
Viewed 53 times
0
-
Welcome to StackOverflow! Please read the info about [how to ask a good question](https://stackoverflow.com/help/how-to-ask) and [how to give a reproducible example](https://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example). This will make it much easier for others to help you. – Aditi Mar 29 '18 at 06:49
-
2Please share with us what you tried so far. – Tamas Rev Mar 29 '18 at 09:57
-
@Aditi we have embedded docusign using powerform by using demo account within iframe. Now I am working on how to configure docusign connect. Which URL i need to mention for publishing in demo account and how docusign is connected with powerform. Do we get any data or event notifications of every signers in connect – user9520811 Apr 02 '18 at 08:04
-
@Tamas rev I have just used html code to embed docusign on my web app and after finish signing its returning to parent page. – user9520811 Apr 02 '18 at 08:06
1 Answers
0
You don't contact DocuSign connect, it contacts you! (Your application.)
- Use the Administration tool--in the Connect section you can add a subscription to Connect, including your application's url.
- When an event that you're interested in occurs (eg Envelope.Complete), Connect will make a POST HTTPS request to your application. The body of the post will be the XML notification message with the details on the envelope that had reached the complete (signed) state.
Ask additional questions on StackOverflow if you have additional questions.
Note: your server (your listener) must be on the public internet so it can be contacted by DocuSign.

Larry K
- 47,808
- 15
- 87
- 140