我已经在DocuSign中启用了提醒和过期。但是,当文档发送给用户时,它似乎不起作用。
我在C#上使用SOAP。
DocuSignAPI.Notification ntf = new DocuSignAPI.Notification();
DocuSignAPI.Reminders rem = new DocuSignAPI.Reminders();
rem.ReminderEnabled = true;
rem.ReminderEnabled = true;
rem.ReminderDelay = 5;
rem.ReminderFrequency = 3;
DocuSignAPI.Expirations exp = new DocuSignAPI.Expirations();
exp.ExpireEnabled = true;
exp.ExpireAfter = 90;
exp.ExpireWarn = 3;发布于 2016-03-02 19:16:14
我将值设置为2016,并注意到过期起作用了,但提醒不起作用。发送文档后,如果我尝试更正文档,则无法在DS网站上看到设置的提醒。
https://stackoverflow.com/questions/34934519
复制相似问题