未设置 DocuSign SOAP 过期
DocuSign SOAP Expirations not being set
我正在使用 C# 在 DocuSign 中使用 SOAP API。
在信封上,我试图将到期日期设置为 2016 年底。根据 DocuSign 支持,允许的最大值为 999。但是当我在网站上以正确模式查看信封时,我看不到设置的日期.我们公司将其设置为 90 天,这是我看到的到期日期。
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";
我正在使用 C# 在 DocuSign 中使用 SOAP API。 在信封上,我试图将到期日期设置为 2016 年底。根据 DocuSign 支持,允许的最大值为 999。但是当我在网站上以正确模式查看信封时,我看不到设置的日期.我们公司将其设置为 90 天,这是我看到的到期日期。
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";