Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a web application that sends requests to DocuSign and receives Event Notifications from DocuSign, the Event Notifications are added to the envelope in code before they are sent to DocuSign.

If an incorrect email address is provided and I correct the envelope in the web app, Event Notifications are no longer being sent to my application for that envelope

question from:https://stackoverflow.com/questions/66061801/no-event-notifications-are-being-sent-to-the-integrated-app-after-an-envelope-ha

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
875 views
Welcome To Ask or Share your Answers For Others

1 Answer

The "Correct" operation you do from the web app is overwriting your original request to set event notifications for your app.

In order to fix this, you would have to correct the envelope from your integration as well and ensure you still provide the same information in the envelope that you did when you originally created it.

You can embed the correct view as part of your application similar to embedded sending such that the envelope is still being updated by your integration and you can keep your webhooks in tact.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...