0

I'm using Docusign to create automatic envelopes but I want to save the signed envelope on my server. What's the best practice to do this?

Could I use the connect function? When yes, how will the request look like? (I can't find a documentation)

Here my custom connect configuration settings

JP371
  • 15
  • 3

1 Answers1

0

Not sure what language you are using or if you're using the SDK but we have lots of resources on Connect and how to use it.

https://www.docusign.com/blog/dsdev-common-api-tasks-add-a-connect-webhook-to-your-envelopes shows you how to do that in all 6 SDK languagues.

https://www.docusign.com/blog/dsdev-adding-webhooks-application gives you some background about how to configure Connect webhooks

https://developers.docusign.com/platform/webhooks/connect has all the information and code example for how to use Connect

Inbar Gazit
  • 12,566
  • 1
  • 16
  • 23
  • Thanks for your answer! I'm using Java and I already have a EventNotification setted up. When setting up the Event Notification I also have to declare an endpoint URL but how will the call to my server look like? – JP371 Nov 16 '20 at 08:47
  • The call to your server would include an XML or JSON with the relevant information. See the links above for more details and try it out. – Inbar Gazit Nov 16 '20 at 19:31