'SDK and callback after sign
We are using Docusign SDK for python, we are sending the envelope and after sign the callback are passing by RecipientViewRequest in returnUrl are be calling, and all are working ok, but we need to receive both emails (review & sign and concluded) and we are getting just the concluded email.
After some research we found that it's because we are using the clientUserId, after remove this key, both emails are sent, but the callback in returnUrl is not called anymore.
Is there a way to receive both emails and still have the callback in returnUrl?
Solution 1:[1]
Sounds like you want the sender to receive the signer_signed email for embedded signers.
Check the eSignature settings tool:
- Open settings from the DocuSign web application
- Click
Signing Settingsin the left column - Scroll down the page to the Envelope Delivery section at the bottom of the page.
- Check that Suppress emails to embedded signers is NOT checked
- You may also want to check the Send completion emails to embedded signers option
Alternate notification
If the above doesn't work...
When you set a signer to be embedded (by setting clientUserId) and use the RecipientViewRequest to show an embedded signing ceremony, the assumption is that your application can manage any necessary notifications.
With embedded signing, after the signer completes the signing ceremony, your application is called and the URL includes the event query parameter.
If the event is complete then the signer has signed.
In that case, your application can notify the sender by sending its own email or notification.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Larry K |

