c# - DocuSign SOAP Expirations not being set -
i using soap api in docusign using c#. on envelope, trying set expiration date end of 2016. per docusign support, max allowed 999. when @ envelope in correct mode on web site, not see date being set. our company has set 90 days , that's expiration date see.
docusignapi.envelope envelope = new docusignapi.envelope(); envelope.enablewetsign = false; envelope.allowreassign = false; docusignapi.expirations exp = new docusignapi.expirations(); exp.expireenabled = true; exp.expireafter = "128"; exp.expirewarn = "0";
docusignapi.notification ntf = new docusignapi.notification(); envelope.notification = ntf; docusignapi.reminders rem = new docusignapi.reminders(); docusignapi.expirations exp = new docusignapi.expirations(); envelope.notification.expirations = exp; exp.expireenabled = true; exp.expireafter = totdays.tostring(); exp.expirewarn = "0";
Comments
Post a Comment