Reputation: 23
I'm using the API to send an envelope and wait for the user to sing the document.
Now what I want is after the sign I want to redirect the user to my app, or at least reach one endpoint of my API.
From what I have understood you have to set the eventNotification when you create the envelope, correct? (/accounts/{accountId}/envelopes)
I'm using this doc as reference:
I try to get an example of how to configure this and send it to the api. But no luck.
Also I know that there is a returnUrl property, but not sure if that apply to this call.
Can any one guide me on how to reach this?
Thanks in advance.
Upvotes: 0
Views: 3119
Reputation: 6818
Per DS Docs, you can configure your Connect listener using envelope API call as well. This is a publish/subscribe architecture, you will be subscribing for the envelope/recipient trigger events, once those events occur DocuSign will publish an XML message to you with some envelope related data.
Branding offers a way to customize the DocuSign experience for both senders and recipients. With the branding controls in DocuSign, as an account administrator you can reinforce your brand presence and reassure signers that documents sent to them through your DocuSign account are coming from your organization. The branding configurations you specify are global and apply to all users on your account and every recipient experience for every envelope sent from your account. Check Branding Docs, Advanced Branding to learn to configure branding in your DS Account.
Once Brand is added by an Admin, then you need to open the Template, and select Advanced Options
section by clicking Edit
link. On clicking Edit
link, it will open below popup to configure the Brand in the Branding dropdown.
Upvotes: 1
Reputation: 5029
Event Notifications are for DocuSign Connect configurations - that will allow DocuSign to ping your application when envelope status changes, but won't have any user-facing implications.
If you are using an Embedded Signer/Captive Recipient workflow, you can include a ReturnURL value in your Post Recipient View call. The signer will be directed to that address after the signing session ends. For more information on that, see https://docs.docusign.com/esign/restapi/Envelopes/EnvelopeViews/createRecipient/
If you aren't using Embedded Signers, you will need to set up Account Branding > Destination URLs. More information on that is available here: https://www.docusign.com/supportdocs/ndse-admin-guide/Content/advanced-branding-configuration.htm#URLs
Upvotes: 1