没有设置DocuSign SOAP过期时间

本文关键字:过期 时间 SOAP DocuSign 设置 | 更新日期: 2023-09-27 18:03:36

我使用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";

没有设置DocuSign SOAP过期时间

                        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";