Reputation: 1
I'm using the DocuSign API 3.0. We are not including the notificationField. It has always used the default settings setup in the Admin for DocuSign. How can I confirm the expiration on an envelope?
Upvotes: 0
Views: 106
Reputation: 5029
The SOAP API Doesn't appear to have a way to get Reminder and Expiration settings for an active envelope. You could log in to the web console, Correct an envelope and view them there.
For the REST API, There's a post about this on the DocuSign Developer Blog: An API call to the Envelopes::getNotificationSettings method will do it.
GET /v2/accounts/{accountId}/envelopes/{envelopeId}/notification
returns the relevant information.
Upvotes: 1